diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION index c2572bd..bc18299 100644 --- a/CRAN-SUBMISSION +++ b/CRAN-SUBMISSION @@ -1,3 +1,3 @@ -Version: 2.0.0 -Date: 2023-10-20 04:58:15 UTC -SHA: d10dd51ac4f1d09be4302618ea1884286a0a6094 +Version: 2.0.1 +Date: 2024-03-18 11:35:30 UTC +SHA: cfcc2d4bf8781368fa99b0ed8587493836e4136f diff --git a/DESCRIPTION b/DESCRIPTION index 1f94a92..089f3d5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,24 +1,24 @@ -Package: diffeqr -Type: Package -Title: Solving Differential Equations (ODEs, SDEs, DDEs, DAEs) -Version: 2.0.0 -Authors@R: person("Christopher", "Rackauckas", email = "me@chrisrackauckas.com", role = c("aut", "cre", "cph")) -Description: An interface to 'DifferentialEquations.jl' from the R programming language. - It has unique high performance methods for solving ordinary differential equations (ODE), stochastic differential equations (SDE), - delay differential equations (DDE), differential-algebraic equations (DAE), and more. Much of the functionality, - including features like adaptive time stepping in SDEs, are unique and allow for multiple orders of magnitude speedup over more common methods. - Supports GPUs, with support for CUDA (NVIDIA), AMD GPUs, Intel oneAPI GPUs, and Apple's Metal (M-series chip GPUs). - 'diffeqr' attaches an R interface onto the package, allowing seamless use of this tooling by R users. For more information, - see Rackauckas and Nie (2017) . -Depends: R (>= 3.4.0) -Encoding: UTF-8 -License: MIT + file LICENSE -URL: https://github.com/SciML/diffeqr -SystemRequirements: Julia (>= 1.6), DifferentialEquations.jl, ModelingToolkit.jl -Imports: - JuliaCall -RoxygenNote: 7.1.1 -Suggests: testthat, - knitr, - rmarkdown -VignetteBuilder: knitr +Package: diffeqr +Type: Package +Title: Solving Differential Equations (ODEs, SDEs, DDEs, DAEs) +Version: 2.0.1 +Authors@R: person("Christopher", "Rackauckas", email = "me@chrisrackauckas.com", role = c("aut", "cre", "cph")) +Description: An interface to 'DifferentialEquations.jl' from the R programming language. + It has unique high performance methods for solving ordinary differential equations (ODE), stochastic differential equations (SDE), + delay differential equations (DDE), differential-algebraic equations (DAE), and more. Much of the functionality, + including features like adaptive time stepping in SDEs, are unique and allow for multiple orders of magnitude speedup over more common methods. + Supports GPUs, with support for CUDA (NVIDIA), AMD GPUs, Intel oneAPI GPUs, and Apple's Metal (M-series chip GPUs). + 'diffeqr' attaches an R interface onto the package, allowing seamless use of this tooling by R users. For more information, + see Rackauckas and Nie (2017) . +Depends: R (>= 3.4.0) +Encoding: UTF-8 +License: MIT + file LICENSE +URL: https://github.com/SciML/diffeqr +SystemRequirements: Julia (>= 1.6), DifferentialEquations.jl, ModelingToolkit.jl +Imports: + JuliaCall +RoxygenNote: 7.1.1 +Suggests: testthat, + knitr, + rmarkdown +VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 65cf01f..0154721 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +## Release v2.0.1 + +Updated to support ModelingToolkit v9 from the Julia side with the JIT compilation. + ## Release v2.0.0 Support new DiffEqGPU syntax. This requires passing a backend. Supports NVIDIA CUDA, Intel OneAPI,