Skip to content

Commit e64a71a

Browse files
authored
Bump version to 0.2.5 (#688)
1 parent fd90d9a commit e64a71a

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

Cargo.lock

+8-8
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
@@ -14,7 +14,7 @@ exclude = [
1414
resolver = "2"
1515

1616
[workspace.package]
17-
version = "0.2.4"
17+
version = "0.2.5"
1818
edition = "2021"
1919
description = "Fast and easy LLM serving."
2020
homepage = "https://github.com/EricLBuehler/mistral.rs"

README.md

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

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.4", path = "../mistralrs-core" }
21+
mistralrs-core = { version = "0.2.5", 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.4", path = "../mistralrs-vision" }
67+
mistralrs-vision = { version = "0.2.5", 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.4", path = "../mistralrs-paged-attn", optional = true }
73+
mistralrs-paged-attn = { version = "0.2.5", path = "../mistralrs-paged-attn", optional = true }
7474
mistralrs-quant = { version = "0.2.0", path = "../mistralrs-quant" }
7575
uuid = { version = "1.10.0", features = ["v4"] }
7676
schemars = "0.8.21"

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.4", path = "../mistralrs-core", features = ["pyo3_macros"] }
20+
mistralrs-core = { version = "0.2.5", 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.4", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] }
20+
mistralrs-core = { version = "0.2.5", 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 = "2386e4e", 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.4"
7+
version = "0.2.5"
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.4"
7+
version = "0.2.5"
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.4", path = "../mistralrs-core" }
25+
mistralrs-core = { version = "0.2.5", 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.4", path = "../mistralrs-core" }
15+
mistralrs-core = { version = "0.2.5", path = "../mistralrs-core" }
1616
anyhow.workspace = true
1717
tokio.workspace = true
1818
candle-core.workspace = true

0 commit comments

Comments
 (0)