From 9b898ee7659fab2db39d945af48b7930d1843041 Mon Sep 17 00:00:00 2001 From: Eric Buehler <65165915+EricLBuehler@users.noreply.github.com> Date: Sun, 28 Jul 2024 14:32:55 -0400 Subject: [PATCH] Bump version to 0.2.3 (#638) * Bump version to 0.2.3 * Fix --- Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- README.md | 2 +- mistralrs-bench/Cargo.toml | 2 +- mistralrs-core/Cargo.toml | 4 ++-- 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 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 94e108be1..dd961c562 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2299,7 +2299,7 @@ dependencies = [ [[package]] name = "mistralrs" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "candle-core", @@ -2313,7 +2313,7 @@ dependencies = [ [[package]] name = "mistralrs-bench" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "candle-core", @@ -2328,7 +2328,7 @@ dependencies = [ [[package]] name = "mistralrs-core" -version = "0.2.2" +version = "0.2.3" dependencies = [ "accelerate-src", "akin", @@ -2392,7 +2392,7 @@ dependencies = [ [[package]] name = "mistralrs-paged-attn" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "bindgen_cuda 0.1.6", @@ -2402,7 +2402,7 @@ dependencies = [ [[package]] name = "mistralrs-pyo3" -version = "0.2.2" +version = "0.2.3" dependencies = [ "accelerate-src", "base64 0.22.1", @@ -2423,7 +2423,7 @@ dependencies = [ [[package]] name = "mistralrs-server" -version = "0.2.2" +version = "0.2.3" dependencies = [ "accelerate-src", "anyhow", @@ -2451,7 +2451,7 @@ dependencies = [ [[package]] name = "mistralrs-vision" -version = "0.2.2" +version = "0.2.3" dependencies = [ "candle-core", "image", diff --git a/Cargo.toml b/Cargo.toml index 03a5e8ce9..69772162d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "0.2.2" +version = "0.2.3" edition = "2021" description = "Fast and easy LLM serving." homepage = "https://github.com/EricLBuehler/mistral.rs" diff --git a/README.md b/README.md index 1abb716b5..1d9622401 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ Please submit more benchmarks via raising an issue! > Note: You can use our [Docker containers here](https://github.com/EricLBuehler/mistral.rs/pkgs/container/mistral.rs). > Learn more about running Docker containers: https://docs.docker.com/engine/reference/run/ -> Note: You can use pre-built `mistralrs-server` binaries [here](https://github.com/EricLBuehler/mistral.rs/releases/tag/v0.2.2) +> Note: You can use pre-built `mistralrs-server` binaries [here](https://github.com/EricLBuehler/mistral.rs/releases/tag/v0.2.3) - Install the [Python package here](mistralrs-pyo3/README.md). diff --git a/mistralrs-bench/Cargo.toml b/mistralrs-bench/Cargo.toml index 354938595..20fddf0de 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.2.2", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" } tracing.workspace = true tokio.workspace = true cli-table = "0.4.7" diff --git a/mistralrs-core/Cargo.toml b/mistralrs-core/Cargo.toml index 9565c3ed9..54bd3e408 100644 --- a/mistralrs-core/Cargo.toml +++ b/mistralrs-core/Cargo.toml @@ -64,13 +64,13 @@ tracing-subscriber.workspace = true derive-new = "0.6.0" itertools = "0.13.0" sysinfo = "0.30.12" -mistralrs-vision = { version = "0.2.2", path = "../mistralrs-vision" } +mistralrs-vision = { version = "0.2.3", path = "../mistralrs-vision" } csv = "1.3.0" reqwest.workspace = true base64.workspace = true bytemuck_derive = "1.7.0" plotly = { version = "0.9.0", features = ["kaleido"], optional = true } -mistralrs-paged-attn = { version = "0.2.2", path = "../mistralrs-paged-attn", optional = true } +mistralrs-paged-attn = { version = "0.2.3", path = "../mistralrs-paged-attn", optional = true } [features] default = ["plotly"] diff --git a/mistralrs-pyo3/Cargo.toml b/mistralrs-pyo3/Cargo.toml index e582d94e5..71bd82b89 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.2.2", path = "../mistralrs-core", features = ["pyo3_macros"] } +mistralrs-core = { version = "0.2.3", 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 77a034479..2d40e3106 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.2.2", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } +mistralrs-core = { version = "0.2.3", 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 = "9e09d7f3", features=["$feature_name"] } diff --git a/mistralrs-pyo3/pyproject.toml b/mistralrs-pyo3/pyproject.toml index e3af1c14b..66fe2e320 100644 --- a/mistralrs-pyo3/pyproject.toml +++ b/mistralrs-pyo3/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "mistralrs" -version = "0.2.2" +version = "0.2.3" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-pyo3/pyproject_template.toml b/mistralrs-pyo3/pyproject_template.toml index ad15af097..e45dd07d3 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.2.2" +version = "0.2.3" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-server/Cargo.toml b/mistralrs-server/Cargo.toml index 87375804d..755293ba3 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.2.2", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.3", 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 1a1e45dfd..536c96ee0 100644 --- a/mistralrs/Cargo.toml +++ b/mistralrs/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true homepage.workspace = true [dependencies] -mistralrs-core = { version = "0.2.2", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" } anyhow.workspace = true tokio.workspace = true candle-core.workspace = true