Skip to content

Commit 9b898ee

Browse files
authored
Bump version to 0.2.3 (#638)
* Bump version to 0.2.3 * Fix
1 parent 38fb942 commit 9b898ee

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

Diff for: Cargo.lock

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

Diff for: 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.2"
16+
version = "0.2.3"
1717
edition = "2021"
1818
description = "Fast and easy LLM serving."
1919
homepage = "https://github.com/EricLBuehler/mistral.rs"

Diff for: README.md

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

Diff for: 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.2", path = "../mistralrs-core" }
21+
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
2222
tracing.workspace = true
2323
tokio.workspace = true
2424
cli-table = "0.4.7"

Diff for: 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.2", path = "../mistralrs-vision" }
67+
mistralrs-vision = { version = "0.2.3", 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.2", path = "../mistralrs-paged-attn", optional = true }
73+
mistralrs-paged-attn = { version = "0.2.3", path = "../mistralrs-paged-attn", optional = true }
7474

7575
[features]
7676
default = ["plotly"]

Diff for: 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.2", path = "../mistralrs-core", features = ["pyo3_macros"] }
20+
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core", features = ["pyo3_macros"] }
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
candle-core.workspace = true

Diff for: 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.2", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] }
20+
mistralrs-core = { version = "0.2.3", 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"] }

Diff for: 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.2"
7+
version = "0.2.3"
88
requires-python = ">=3.8"
99
classifiers = [
1010
"Programming Language :: Rust",

Diff for: 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.2"
7+
version = "0.2.3"
88
requires-python = ">=3.8"
99
classifiers = [
1010
"Programming Language :: Rust",

Diff for: 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.2", path = "../mistralrs-core" }
25+
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
2626
indexmap.workspace = true
2727
accelerate-src = { workspace = true, optional = true }
2828
intel-mkl-src = { workspace = true, optional = true }

Diff for: 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.2", path = "../mistralrs-core" }
15+
mistralrs-core = { version = "0.2.3", path = "../mistralrs-core" }
1616
anyhow.workspace = true
1717
tokio.workspace = true
1818
candle-core.workspace = true

0 commit comments

Comments
 (0)