From 5c3e9f171bfdb526df2e353328d1b8db5c00daaf Mon Sep 17 00:00:00 2001 From: EricLBuehler Date: Wed, 22 May 2024 07:51:49 -0400 Subject: [PATCH] Bump versions --- Cargo.toml | 2 +- mistralrs-bench/Cargo.toml | 2 +- mistralrs-core/src/layers_masker.rs | 6 +++--- mistralrs-pyo3/Cargo.toml | 2 +- mistralrs-pyo3/Cargo_template.toml | 2 +- mistralrs-pyo3/pyproject.toml | 2 +- mistralrs-pyo3/pyproject_template.toml | 2 +- mistralrs-server/Cargo.toml | 2 +- mistralrs/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 567d803ba..297b55b11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.1.9" +version = "0.1.10" 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 1d00c763c..88626b839 100644 --- a/mistralrs-bench/Cargo.toml +++ b/mistralrs-bench/Cargo.toml @@ -17,7 +17,7 @@ candle-core.workspace = true serde.workspace = true serde_json.workspace = true clap.workspace = true -mistralrs-core = { version = "0.1.9", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.10", path = "../mistralrs-core" } tracing.workspace = true tracing-subscriber.workspace = true either.workspace = true diff --git a/mistralrs-core/src/layers_masker.rs b/mistralrs-core/src/layers_masker.rs index 43d3da42c..45bf64ba5 100644 --- a/mistralrs-core/src/layers_masker.rs +++ b/mistralrs-core/src/layers_masker.rs @@ -172,7 +172,7 @@ impl CausalMasker { } #[deprecated( - since = "0.1.9", + since = "0.1.10", note = "use `make_causal_mask_as_attn_bias` instead! \ This is *not* compatible with `ScaledDotProductAttention`" )] @@ -208,7 +208,7 @@ impl CausalMasker { } #[deprecated( - since = "0.1.9", + since = "0.1.10", note = "use `make_causal_mask_with_sliding_window_as_attn_bias` instead! \ This is *not* compatible with `ScaledDotProductAttention`" )] @@ -253,7 +253,7 @@ impl CausalMasker { } #[deprecated( - since = "0.1.9", + since = "0.1.10", note = "use one of the `*_as_attn_bias` functions\ to create an attention bias which can be added." )] diff --git a/mistralrs-pyo3/Cargo.toml b/mistralrs-pyo3/Cargo.toml index 33fbe29b4..7d44028e5 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.9", path = "../mistralrs-core", features = ["pyo3_macros"] } +mistralrs-core = { version = "0.1.10", 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 c17d02482..498c9706c 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.9", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } +mistralrs-core = { version = "0.1.10", 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.5.0", features=["$feature_name"] } diff --git a/mistralrs-pyo3/pyproject.toml b/mistralrs-pyo3/pyproject.toml index 4b367ce11..3aa089e4c 100644 --- a/mistralrs-pyo3/pyproject.toml +++ b/mistralrs-pyo3/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "mistralrs" -version = "0.1.9" +version = "0.1.10" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-pyo3/pyproject_template.toml b/mistralrs-pyo3/pyproject_template.toml index f5b2cdb6f..01e984823 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.9" +version = "0.1.10" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-server/Cargo.toml b/mistralrs-server/Cargo.toml index 59d667b8d..c978f48b4 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 = "6.0", features = ["axum"]} -mistralrs-core = { version = "0.1.9", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.10", path = "../mistralrs-core" } dyn-fmt = "0.4.0" indexmap.workspace = true accelerate-src = { workspace = true, optional = true } diff --git a/mistralrs/Cargo.toml b/mistralrs/Cargo.toml index a1d46ca4a..1ceed5ec1 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.9", path = "../mistralrs-core" } +mistralrs-core = { version = "0.1.10", path = "../mistralrs-core" } anyhow.workspace = true tokio.workspace = true candle-core.workspace = true