Skip to content

Commit 7c086a9

Browse files
authored
Bump version to 0.5.0 (#1233)
1 parent b05a723 commit 7c086a9

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.4.0"
15+
version = "0.5.0"
1616
edition = "2021"
1717
description = "Fast and easy LLM serving."
1818
homepage = "https://github.com/EricLBuehler/mistral.rs"

mistralrs-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.4.0", path = "../mistralrs-core" }
21+
mistralrs-core = { version = "0.5.0", path = "../mistralrs-core" }
2222
tracing.workspace = true
2323
tokio.workspace = true
2424
cli-table = "0.4.7"

mistralrs-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ tracing-subscriber.workspace = true
6363
derive-new = "0.7.0"
6464
itertools = "0.13.0"
6565
sysinfo = "0.30.12"
66-
mistralrs-vision = { version = "0.4.0", path = "../mistralrs-vision" }
66+
mistralrs-vision = { version = "0.5.0", path = "../mistralrs-vision" }
6767
csv = "1.3.0"
6868
reqwest.workspace = true
6969
base64.workspace = true
7070
bytemuck_derive = "1.7.0"
71-
mistralrs-paged-attn = { version = "0.4.0", path = "../mistralrs-paged-attn", optional = true }
72-
mistralrs-quant = { version = "0.4.0", path = "../mistralrs-quant" }
71+
mistralrs-paged-attn = { version = "0.5.0", path = "../mistralrs-paged-attn", optional = true }
72+
mistralrs-quant = { version = "0.5.0", path = "../mistralrs-quant" }
7373
uuid = { version = "1.10.0", features = ["v4"] }
7474
schemars = "0.8.21"
7575
serde_yaml = "0.9.34"

mistralrs-pyo3/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.4.0", path = "../mistralrs-core", features = ["pyo3_macros"] }
20+
mistralrs-core = { version = "0.5.0", path = "../mistralrs-core", features = ["pyo3_macros"] }
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
candle-core.workspace = true

mistralrs-pyo3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

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

mistralrs-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.4.0", path = "../mistralrs-core" }
25+
mistralrs-core = { version = "0.5.0", 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

Lines changed: 1 addition & 1 deletion
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.4.0", path = "../mistralrs-core" }
15+
mistralrs-core = { version = "0.5.0", path = "../mistralrs-core" }
1616
anyhow.workspace = true
1717
tokio.workspace = true
1818
candle-core.workspace = true

0 commit comments

Comments
 (0)