Skip to content

Commit 99bc02d

Browse files
authoredJun 24, 2024
Bump version to 0.1.22 (#475)
1 parent 0ceddb3 commit 99bc02d

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed
 

‎Cargo.lock

+6-6
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
@@ -10,7 +10,7 @@ members = [
1010
resolver = "2"
1111

1212
[workspace.package]
13-
version = "0.1.21"
13+
version = "0.1.22"
1414
edition = "2021"
1515
description = "Fast and easy LLM serving."
1616
homepage = "https://github.com/EricLBuehler/mistral.rs"

‎mistralrs-bench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ candle-core.workspace = true
1717
serde.workspace = true
1818
serde_json.workspace = true
1919
clap.workspace = true
20-
mistralrs-core = { version = "0.1.21", path = "../mistralrs-core" }
20+
mistralrs-core = { version = "0.1.22", path = "../mistralrs-core" }
2121
tracing.workspace = true
2222
either.workspace = true
2323
tokio.workspace = true

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

0 commit comments

Comments
 (0)