Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the crate version to 0.8.1. #2662

Merged
merged 1 commit into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exclude = [
resolver = "2"

[workspace.package]
version = "0.8.0"
version = "0.8.1"
edition = "2021"
description = "Minimalist ML framework."
repository = "https://github.com/huggingface/candle"
Expand All @@ -33,14 +33,14 @@ ab_glyph = "0.2.23"
accelerate-src = { version = "0.3.2" }
anyhow = { version = "1", features = ["backtrace"] }
byteorder = "1.4.3"
candle = { path = "./candle-core", package = "candle-core", version = "0.8.0" }
candle-datasets = { path = "./candle-datasets", version = "0.8.0" }
candle-flash-attn = { path = "./candle-flash-attn", version = "0.8.0" }
candle-kernels = { path = "./candle-kernels", version = "0.8.0" }
candle-metal-kernels = { path = "./candle-metal-kernels", version = "0.8.0" }
candle-nn = { path = "./candle-nn", version = "0.8.0" }
candle-onnx = { path = "./candle-onnx", version = "0.8.0" }
candle-transformers = { path = "./candle-transformers", version = "0.8.0" }
candle = { path = "./candle-core", package = "candle-core", version = "0.8.1" }
candle-datasets = { path = "./candle-datasets", version = "0.8.1" }
candle-flash-attn = { path = "./candle-flash-attn", version = "0.8.1" }
candle-kernels = { path = "./candle-kernels", version = "0.8.1" }
candle-metal-kernels = { path = "./candle-metal-kernels", version = "0.8.1" }
candle-nn = { path = "./candle-nn", version = "0.8.1" }
candle-onnx = { path = "./candle-onnx", version = "0.8.1" }
candle-transformers = { path = "./candle-transformers", version = "0.8.1" }
clap = { version = "4.2.4", features = ["derive"] }
criterion = { version = "0.5.1", default-features=false }
cudarc = { version = "0.12.1", features = ["std", "cublas", "cublaslt", "curand", "driver", "nvrtc", "f16", "cuda-version-from-build-system", "dynamic-linking"], default-features=false }
Expand Down
4 changes: 2 additions & 2 deletions candle-flash-attn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-flash-attn"
version = "0.8.0"
version = "0.8.1"
edition = "2021"

description = "Flash attention layer for the candle ML framework."
Expand All @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"

[dependencies]
candle = { path = "../candle-core", features = ["cuda"], package = "candle-core", version = "0.8.0" }
candle = { path = "../candle-core", features = ["cuda"], package = "candle-core", version = "0.8.1" }
half = { version = "2.3.1", features = ["num-traits"] }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion candle-kernels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-kernels"
version = "0.8.0"
version = "0.8.1"
edition = "2021"

description = "CUDA kernels for Candle"
Expand Down
2 changes: 1 addition & 1 deletion candle-metal-kernels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-metal-kernels"
version = "0.8.0"
version = "0.8.1"
edition = "2021"

description = "Metal kernels for Candle"
Expand Down
6 changes: 3 additions & 3 deletions candle-onnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-onnx"
version = "0.8.0"
version = "0.8.1"
edition = "2021"

description = "ONNX support for Candle"
Expand All @@ -10,8 +10,8 @@ categories = ["science"]
license = "MIT OR Apache-2.0"

[dependencies]
candle = { path = "../candle-core", package = "candle-core", version = "0.8.0" }
candle-nn = { path = "../candle-nn", version = "0.8.0" }
candle = { path = "../candle-core", package = "candle-core", version = "0.8.1" }
candle-nn = { path = "../candle-nn", version = "0.8.1" }
prost = "0.12.1"

[build-dependencies]
Expand Down
Loading