Skip to content

Commit

Permalink
RLSE: Ver 0.39.0
Browse files Browse the repository at this point in the history
- Decouple initial conditions from ODEProblem
  • Loading branch information
Axect committed Nov 22, 2024
1 parent fcf5b07 commit db310b8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
24 changes: 15 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peroxide"
version = "0.38.1"
version = "0.39.0"
authors = ["axect <[email protected]>"]
edition = "2018"
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
Expand All @@ -11,12 +11,12 @@ readme = "README.md"
documentation = "https://axect.github.io/Peroxide_Doc"
keywords = ["Numeric", "Science", "Dataframe", "Plot", "LinearAlgebra"]
exclude = [
"example_data/",
"src/bin/",
"benches/",
"example/",
"test_data/",
"peroxide-ad2",
"example_data/",
"src/bin/",
"benches/",
"example/",
"test_data/",
"peroxide-ad2",
]

[badges]
Expand All @@ -40,12 +40,18 @@ anyhow = "1.0"
paste = "1.0"
#num-complex = "0.3"
netcdf = { version = "0.7", optional = true, default-features = false }
pyo3 = { version = "0.22", optional = true, features = ["auto-initialize", "gil-refs"] }
pyo3 = { version = "0.23", optional = true, features = [
"auto-initialize",
"gil-refs",
] }
blas = { version = "0.22", optional = true }
lapack = { version = "0.19", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
json = { version = "0.12", optional = true }
arrow2 = { version = "0.18", features = ["io_parquet", "io_parquet_compression"], optional = true }
arrow2 = { version = "0.18", features = [
"io_parquet",
"io_parquet_compression",
], optional = true }
num-complex = { version = "0.4", optional = true }
rayon = { version = "1.10", optional = true }

Expand Down
5 changes: 5 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release 0.39.0 (2024-11-22)

- Decouple `initial_conditions` from `ODEProblem`
- Now, we can define `initial_conditions` in solving phase

# Release 0.38.1 (2024-11-06)

- Fix error in `O3` feature
Expand Down

0 comments on commit db310b8

Please sign in to comment.