diff --git a/Cargo.toml b/Cargo.toml index 0cb5b0e..598c7c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forust-ml" -version = "0.3.2" +version = "0.3.3" edition = "2021" authors = ["James Inlow "] homepage = "https://github.com/jinlow/forust" diff --git a/README.md b/README.md index c9b89ea..7e30aae 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.3.2" +forust-ml = "0.3.3" ``` ## Usage diff --git a/py-forust/Cargo.toml b/py-forust/Cargo.toml index 4bb336f..7bfaa2c 100644 --- a/py-forust/Cargo.toml +++ b/py-forust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-forust" -version = "0.3.2" +version = "0.3.3" 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.3.2", path = "../" } +forust-ml = { version = "0.3.3", 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 e697ed7..d5ac294 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.3.2" +forust-ml = "0.3.3" polars = "0.28" reqwest = { version = "0.11", features = ["blocking"] } ```