From 584117631ed2bdeb68120cc50079baadb252ac7f Mon Sep 17 00:00:00 2001 From: jinlow Date: Wed, 6 Sep 2023 14:49:22 -0500 Subject: [PATCH] Increment version --- Cargo.toml | 2 +- README.md | 2 +- py-forust/Cargo.toml | 4 ++-- rs-example.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f7b11b..528c051 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forust-ml" -version = "0.2.21" +version = "0.2.22" edition = "2021" authors = ["James Inlow "] homepage = "https://github.com/jinlow/forust" diff --git a/README.md b/README.md index 9eddef8..eac18bb 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.21" +forust-ml = "0.2.22" ``` ## Usage diff --git a/py-forust/Cargo.toml b/py-forust/Cargo.toml index 658319d..1ed4bdf 100644 --- a/py-forust/Cargo.toml +++ b/py-forust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-forust" -version = "0.2.21" +version = "0.2.22" 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.21", path = "../" } +forust-ml = { version = "0.2.22", 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 6feea2d..c72e147 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.21" +forust-ml = "0.2.22" polars = "0.28" reqwest = { version = "0.11", features = ["blocking"] } ```