From e64a71a16e28f55f396490d5bc40cf1ca4187c13 Mon Sep 17 00:00:00 2001 From: Eric Buehler <65165915+EricLBuehler@users.noreply.github.com> Date: Thu, 15 Aug 2024 20:53:26 -0400 Subject: [PATCH] Bump version to 0.2.5 (#688) --- Cargo.lock | 16 ++++++++-------- 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, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ea15f5820..71e5cb1bbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2302,7 +2302,7 @@ dependencies = [ [[package]] name = "mistralrs" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "candle-core", @@ -2317,7 +2317,7 @@ dependencies = [ [[package]] name = "mistralrs-bench" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "candle-core", @@ -2332,7 +2332,7 @@ dependencies = [ [[package]] name = "mistralrs-core" -version = "0.2.4" +version = "0.2.5" dependencies = [ "accelerate-src", "akin", @@ -2399,7 +2399,7 @@ dependencies = [ [[package]] name = "mistralrs-paged-attn" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "bindgen_cuda 0.1.6", @@ -2409,7 +2409,7 @@ dependencies = [ [[package]] name = "mistralrs-pyo3" -version = "0.2.4" +version = "0.2.5" dependencies = [ "accelerate-src", "base64 0.22.1", @@ -2430,7 +2430,7 @@ dependencies = [ [[package]] name = "mistralrs-quant" -version = "0.2.4" +version = "0.2.5" dependencies = [ "bindgen_cuda 0.1.5", "candle-core", @@ -2445,7 +2445,7 @@ dependencies = [ [[package]] name = "mistralrs-server" -version = "0.2.4" +version = "0.2.5" dependencies = [ "accelerate-src", "anyhow", @@ -2473,7 +2473,7 @@ dependencies = [ [[package]] name = "mistralrs-vision" -version = "0.2.4" +version = "0.2.5" dependencies = [ "candle-core", "image", diff --git a/Cargo.toml b/Cargo.toml index 0d1730bc3e..c0c83c2aa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "0.2.4" +version = "0.2.5" edition = "2021" description = "Fast and easy LLM serving." homepage = "https://github.com/EricLBuehler/mistral.rs" diff --git a/README.md b/README.md index c76ca499fc..78b4f0a856 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,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.4) +> Note: You can use pre-built `mistralrs-server` binaries [here](https://github.com/EricLBuehler/mistral.rs/releases/tag/v0.2.5) - Install the [Python package here](mistralrs-pyo3/README.md). diff --git a/mistralrs-bench/Cargo.toml b/mistralrs-bench/Cargo.toml index a51f54651a..8e38eaa467 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.4", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.5", 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 2f0569af6e..35b2aaaf99 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.4", path = "../mistralrs-vision" } +mistralrs-vision = { version = "0.2.5", 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.4", path = "../mistralrs-paged-attn", optional = true } +mistralrs-paged-attn = { version = "0.2.5", path = "../mistralrs-paged-attn", optional = true } mistralrs-quant = { version = "0.2.0", path = "../mistralrs-quant" } uuid = { version = "1.10.0", features = ["v4"] } schemars = "0.8.21" diff --git a/mistralrs-pyo3/Cargo.toml b/mistralrs-pyo3/Cargo.toml index 1d531e11bf..e1011415e4 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.4", path = "../mistralrs-core", features = ["pyo3_macros"] } +mistralrs-core = { version = "0.2.5", 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 846b9cac1e..8f6da0d5d6 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.4", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } +mistralrs-core = { version = "0.2.5", 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 = "2386e4e", features=["$feature_name"] } diff --git a/mistralrs-pyo3/pyproject.toml b/mistralrs-pyo3/pyproject.toml index 2a7cab5160..caa863b3a1 100644 --- a/mistralrs-pyo3/pyproject.toml +++ b/mistralrs-pyo3/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "mistralrs" -version = "0.2.4" +version = "0.2.5" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-pyo3/pyproject_template.toml b/mistralrs-pyo3/pyproject_template.toml index 45742c24c1..99479c1928 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.4" +version = "0.2.5" requires-python = ">=3.8" classifiers = [ "Programming Language :: Rust", diff --git a/mistralrs-server/Cargo.toml b/mistralrs-server/Cargo.toml index 539338acfe..b5b85542ca 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.4", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.5", 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 96f0684edf..814730ac78 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.4", path = "../mistralrs-core" } +mistralrs-core = { version = "0.2.5", path = "../mistralrs-core" } anyhow.workspace = true tokio.workspace = true candle-core.workspace = true