diff --git a/Cargo.lock b/Cargo.lock index 05d39601a..2852c7d27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2278,7 +2278,7 @@ dependencies = [ [[package]] name = "mistralrs" -version = "0.1.24" +version = "0.1.25" dependencies = [ "anyhow", "candle-core", @@ -2292,7 +2292,7 @@ dependencies = [ [[package]] name = "mistralrs-bench" -version = "0.1.24" +version = "0.1.25" dependencies = [ "anyhow", "candle-core", @@ -2308,7 +2308,7 @@ dependencies = [ [[package]] name = "mistralrs-core" -version = "0.1.24" +version = "0.1.25" dependencies = [ "accelerate-src", "akin", @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "mistralrs-pyo3" -version = "0.1.24" +version = "0.1.25" dependencies = [ "accelerate-src", "base64 0.22.1", @@ -2392,7 +2392,7 @@ dependencies = [ [[package]] name = "mistralrs-server" -version = "0.1.24" +version = "0.1.25" dependencies = [ "accelerate-src", "anyhow", @@ -2420,7 +2420,7 @@ dependencies = [ [[package]] name = "mistralrs-vision" -version = "0.1.24" +version = "0.1.25" dependencies = [ "candle-core", "image", diff --git a/Cargo.toml b/Cargo.toml index 813131681..35605217f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.1.24" +version = "0.1.25" edition = "2021" description = "Fast and easy LLM serving." homepage = "https://github.com/EricLBuehler/mistral.rs" diff --git a/mistralrs-bench/Cargo.toml b/mistralrs-bench/Cargo.toml index ae58c8df8..f70038434 100644 --- a/mistralrs-bench/Cargo.toml +++ b/mistralrs-bench/Cargo.toml @@ -18,7 +18,7 @@ candle-core.workspace = true serde.workspace = true serde_json.workspace = true clap.workspace = true -mistralrs-core = { version = "0.1.24", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.25", path = "../mistralrs-core" } tracing.workspace = true either.workspace = true tokio.workspace = true diff --git a/mistralrs-pyo3/Cargo.toml b/mistralrs-pyo3/Cargo.toml index 6ba777b29..f2a644768 100644 --- a/mistralrs-pyo3/Cargo.toml +++ b/mistralrs-pyo3/Cargo.toml @@ -17,7 +17,7 @@ doc = false [dependencies] pyo3.workspace = true -mistralrs-core = { version = "0.1.24", path = "../mistralrs-core", features = ["pyo3_macros"] } +mistralrs-core = { version = "0.1.25", path = "../mistralrs-core", features = ["pyo3_macros"] } serde.workspace = true serde_json.workspace = true candle-core.workspace = true diff --git a/mistralrs-pyo3/Cargo_template.toml b/mistralrs-pyo3/Cargo_template.toml index 3c0d6ca2a..826204cd7 100644 --- a/mistralrs-pyo3/Cargo_template.toml +++ b/mistralrs-pyo3/Cargo_template.toml @@ -17,7 +17,7 @@ doc = false [dependencies] pyo3.workspace = true -mistralrs-core = { version = "0.1.24", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } +mistralrs-core = { version = "0.1.25", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } serde.workspace = true serde_json.workspace = true candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "b7a3e344", features=["$feature_name"] } diff --git a/mistralrs-pyo3/pyproject.toml b/mistralrs-pyo3/pyproject.toml index a5a637983..804b97a75 100644 --- a/mistralrs-pyo3/pyproject.toml +++ b/mistralrs-pyo3/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "mistralrs" -version = "0.1.24" +version = "0.1.25" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-pyo3/pyproject_template.toml b/mistralrs-pyo3/pyproject_template.toml index 7a9f6a3fe..666e221b8 100644 --- a/mistralrs-pyo3/pyproject_template.toml +++ b/mistralrs-pyo3/pyproject_template.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "$name" -version = "0.1.24" +version = "0.1.25" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-server/Cargo.toml b/mistralrs-server/Cargo.toml index a5de07820..cc53873c4 100644 --- a/mistralrs-server/Cargo.toml +++ b/mistralrs-server/Cargo.toml @@ -22,7 +22,7 @@ axum = { version = "0.7.4", features = ["tokio"] } tower-http = { version = "0.5.1", features = ["cors"]} utoipa = { version = "4.2", features = ["axum_extras"] } utoipa-swagger-ui = { version = "7.1.0", features = ["axum"]} -mistralrs-core = { version = "0.1.24", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.25", path = "../mistralrs-core" } indexmap.workspace = true accelerate-src = { workspace = true, optional = true } intel-mkl-src = { workspace = true, optional = true } diff --git a/mistralrs/Cargo.toml b/mistralrs/Cargo.toml index c8d6d6f38..0d9b14265 100644 --- a/mistralrs/Cargo.toml +++ b/mistralrs/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true homepage.workspace = true [dependencies] -mistralrs-core = { version = "0.1.24", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.25", path = "../mistralrs-core" } anyhow.workspace = true tokio.workspace = true candle-core.workspace = true