Skip to content

Commit 8a84d05

Browse files
authored
Bump version to 0.2.4 (#662)
1 parent 3a69a54 commit 8a84d05

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = [
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "0.2.3"
16+
version = "0.2.4"
1717
edition = "2021"
1818
description = "Fast and easy LLM serving."
1919
homepage = "https://github.com/EricLBuehler/mistral.rs"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Please submit more benchmarks via raising an issue!
195195
> Note: You can use our [Docker containers here](https://github.com/EricLBuehler/mistral.rs/pkgs/container/mistral.rs).
196196
> Learn more about running Docker containers: https://docs.docker.com/engine/reference/run/
197197
198-
> Note: You can use pre-built `mistralrs-server` binaries [here](https://github.com/EricLBuehler/mistral.rs/releases/tag/v0.2.3)
198+
> Note: You can use pre-built `mistralrs-server` binaries [here](https://github.com/EricLBuehler/mistral.rs/releases/tag/v0.2.4)
199199
200200
- Install the [Python package here](mistralrs-pyo3/README.md).
201201

mistralrs-bench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ candle-core.workspace = true
1818
serde.workspace = true
1919
serde_json.workspace = true
2020
clap.workspace = true
21-
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
21+
mistralrs-core = { version = "0.2.4", path = "../mistralrs-core" }
2222
tracing.workspace = true
2323
tokio.workspace = true
2424
cli-table = "0.4.7"

mistralrs-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ tracing-subscriber.workspace = true
6464
derive-new = "0.6.0"
6565
itertools = "0.13.0"
6666
sysinfo = "0.30.12"
67-
mistralrs-vision = { version = "0.2.3", path = "../mistralrs-vision" }
67+
mistralrs-vision = { version = "0.2.4", path = "../mistralrs-vision" }
6868
csv = "1.3.0"
6969
reqwest.workspace = true
7070
base64.workspace = true
7171
bytemuck_derive = "1.7.0"
7272
plotly = { version = "0.9.0", features = ["kaleido"], optional = true }
73-
mistralrs-paged-attn = { version = "0.2.3", path = "../mistralrs-paged-attn", optional = true }
73+
mistralrs-paged-attn = { version = "0.2.4", path = "../mistralrs-paged-attn", optional = true }
7474
uuid = { version = "1.10.0", features = ["v4"] }
7575
schemars = "0.8.21"
7676

mistralrs-pyo3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doc = false
1717

1818
[dependencies]
1919
pyo3.workspace = true
20-
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core", features = ["pyo3_macros"] }
20+
mistralrs-core = { version = "0.2.4", path = "../mistralrs-core", features = ["pyo3_macros"] }
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
candle-core.workspace = true

mistralrs-pyo3/Cargo_template.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doc = false
1717

1818
[dependencies]
1919
pyo3.workspace = true
20-
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] }
20+
mistralrs-core = { version = "0.2.4", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] }
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "9e09d7f3", features=["$feature_name"] }

mistralrs-pyo3/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "mistralrs"
7-
version = "0.2.3"
7+
version = "0.2.4"
88
requires-python = ">=3.8"
99
classifiers = [
1010
"Programming Language :: Rust",

mistralrs-pyo3/pyproject_template.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "$name"
7-
version = "0.2.3"
7+
version = "0.2.4"
88
requires-python = ">=3.8"
99
classifiers = [
1010
"Programming Language :: Rust",

mistralrs-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ axum = { version = "0.7.4", features = ["tokio"] }
2222
tower-http = { version = "0.5.1", features = ["cors"]}
2323
utoipa = { version = "4.2", features = ["axum_extras"] }
2424
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"]}
25-
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
25+
mistralrs-core = { version = "0.2.4", path = "../mistralrs-core" }
2626
indexmap.workspace = true
2727
accelerate-src = { workspace = true, optional = true }
2828
intel-mkl-src = { workspace = true, optional = true }

mistralrs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license.workspace = true
1212
homepage.workspace = true
1313

1414
[dependencies]
15-
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
15+
mistralrs-core = { version = "0.2.4", path = "../mistralrs-core" }
1616
anyhow.workspace = true
1717
tokio.workspace = true
1818
candle-core.workspace = true

0 commit comments

Comments
 (0)