Skip to content

Commit db310b8

Browse files
committed
RLSE: Ver 0.39.0
- Decouple initial conditions from ODEProblem
1 parent fcf5b07 commit db310b8

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

Cargo.toml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peroxide"
3-
version = "0.38.1"
3+
version = "0.39.0"
44
authors = ["axect <[email protected]>"]
55
edition = "2018"
66
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
@@ -11,12 +11,12 @@ readme = "README.md"
1111
documentation = "https://axect.github.io/Peroxide_Doc"
1212
keywords = ["Numeric", "Science", "Dataframe", "Plot", "LinearAlgebra"]
1313
exclude = [
14-
"example_data/",
15-
"src/bin/",
16-
"benches/",
17-
"example/",
18-
"test_data/",
19-
"peroxide-ad2",
14+
"example_data/",
15+
"src/bin/",
16+
"benches/",
17+
"example/",
18+
"test_data/",
19+
"peroxide-ad2",
2020
]
2121

2222
[badges]
@@ -40,12 +40,18 @@ anyhow = "1.0"
4040
paste = "1.0"
4141
#num-complex = "0.3"
4242
netcdf = { version = "0.7", optional = true, default-features = false }
43-
pyo3 = { version = "0.22", optional = true, features = ["auto-initialize", "gil-refs"] }
43+
pyo3 = { version = "0.23", optional = true, features = [
44+
"auto-initialize",
45+
"gil-refs",
46+
] }
4447
blas = { version = "0.22", optional = true }
4548
lapack = { version = "0.19", optional = true }
4649
serde = { version = "1.0", features = ["derive"], optional = true }
4750
json = { version = "0.12", optional = true }
48-
arrow2 = { version = "0.18", features = ["io_parquet", "io_parquet_compression"], optional = true }
51+
arrow2 = { version = "0.18", features = [
52+
"io_parquet",
53+
"io_parquet_compression",
54+
], optional = true }
4955
num-complex = { version = "0.4", optional = true }
5056
rayon = { version = "1.10", optional = true }
5157

RELEASES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Release 0.39.0 (2024-11-22)
2+
3+
- Decouple `initial_conditions` from `ODEProblem`
4+
- Now, we can define `initial_conditions` in solving phase
5+
16
# Release 0.38.1 (2024-11-06)
27

38
- Fix error in `O3` feature

0 commit comments

Comments
 (0)