Bump the crate version. (#2881)

This commit is contained in:
Laurent Mazare
2025-04-11 22:28:21 +02:00
committed by GitHub
parent acc5bd335f
commit 19fb6dac1f
5 changed files with 17 additions and 17 deletions

View File

@ -20,7 +20,7 @@ exclude = [
resolver = "2"
[workspace.package]
version = "0.9.0-alpha.1"
version = "0.9.0-alpha.2"
edition = "2021"
description = "Minimalist ML framework."
repository = "https://github.com/huggingface/candle"
@ -33,17 +33,17 @@ 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.9.0-alpha.1" }
candle-datasets = { path = "./candle-datasets", version = "0.9.0-alpha.1" }
candle-flash-attn = { path = "./candle-flash-attn", version = "0.9.0-alpha.1" }
candle-kernels = { path = "./candle-kernels", version = "0.9.0-alpha.1" }
candle-metal-kernels = { path = "./candle-metal-kernels", version = "0.9.0-alpha.1" }
candle-nn = { path = "./candle-nn", version = "0.9.0-alpha.1" }
candle-onnx = { path = "./candle-onnx", version = "0.9.0-alpha.1" }
candle-transformers = { path = "./candle-transformers", version = "0.9.0-alpha.1" }
candle = { path = "./candle-core", package = "candle-core", version = "0.9.0-alpha.2" }
candle-datasets = { path = "./candle-datasets", version = "0.9.0-alpha.2" }
candle-flash-attn = { path = "./candle-flash-attn", version = "0.9.0-alpha.2" }
candle-kernels = { path = "./candle-kernels", version = "0.9.0-alpha.2" }
candle-metal-kernels = { path = "./candle-metal-kernels", version = "0.9.0-alpha.2" }
candle-nn = { path = "./candle-nn", version = "0.9.0-alpha.2" }
candle-onnx = { path = "./candle-onnx", version = "0.9.0-alpha.2" }
candle-transformers = { path = "./candle-transformers", version = "0.9.0-alpha.2" }
clap = { version = "4.2.4", features = ["derive"] }
criterion = { version = "0.5.1", default-features=false }
cudarc = { version = "0.14.0", features = ["std", "cublas", "cublaslt", "curand", "driver", "nvrtc", "f16", "cuda-version-from-build-system", "dynamic-linking"], default-features=false }
cudarc = { version = "0.15.1", features = ["std", "cublas", "cublaslt", "curand", "driver", "nvrtc", "f16", "cuda-version-from-build-system", "dynamic-linking"], default-features=false }
fancy-regex = "0.13.0"
gemm = { version = "0.17.0", features = ["wasm-simd128-enable"] }
hf-hub = "0.4.1"