diff --git a/Cargo.toml b/Cargo.toml index 245a6df..38ef2b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forust-ml" -version = "0.2.23" +version = "0.2.24" edition = "2021" authors = ["James Inlow "] homepage = "https://github.com/jinlow/forust" diff --git a/README.md b/README.md index 60c2e72..7af797f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ pip install forust To use in a rust project add the following to your Cargo.toml file. ```toml -forust-ml = "0.2.23" +forust-ml = "0.2.24" ``` ## Usage diff --git a/py-forust/Cargo.toml b/py-forust/Cargo.toml index 7e8fcd4..d451443 100644 --- a/py-forust/Cargo.toml +++ b/py-forust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-forust" -version = "0.2.23" +version = "0.2.24" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,7 +10,7 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { version = "0.19.0", features = ["extension-module"] } -forust-ml = { version = "0.2.23", path = "../" } +forust-ml = { version = "0.2.24", path = "../" } numpy = "0.19.0" ndarray = "0.15.1" serde_plain = { version = "1.0" } diff --git a/rs-example.md b/rs-example.md index 352e822..96735cb 100644 --- a/rs-example.md +++ b/rs-example.md @@ -3,7 +3,7 @@ To run this example, add the following code to your `Cargo.toml` file. ```toml [dependencies] -forust-ml = "0.2.23" +forust-ml = "0.2.24" polars = "0.28" reqwest = { version = "0.11", features = ["blocking"] } ```