From 236c35e5789723efe772f41920f3ac071bdff24d Mon Sep 17 00:00:00 2001
From: Laurent Mazare <laurent.mazare@gmail.com>
Date: Tue, 7 Jan 2025 15:50:16 +0100
Subject: [PATCH] Bump the caret version to 0.8.2. (#2703)

---
 Cargo.toml                      | 18 +++++++++---------
 candle-flash-attn/Cargo.toml    |  4 ++--
 candle-kernels/Cargo.toml       |  2 +-
 candle-metal-kernels/Cargo.toml |  2 +-
 candle-onnx/Cargo.toml          |  6 +++---
 5 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index bb053d979..c8fe52e94 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ exclude = [
 resolver = "2"
 
 [workspace.package]
-version = "0.8.1"
+version = "0.8.2"
 edition = "2021"
 description = "Minimalist ML framework."
 repository = "https://github.com/huggingface/candle"
@@ -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.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" }
+candle = { path = "./candle-core", package = "candle-core", version = "0.8.2" }
+candle-datasets = { path = "./candle-datasets", version = "0.8.2" }
+candle-flash-attn = { path = "./candle-flash-attn", version = "0.8.2" }
+candle-kernels = { path = "./candle-kernels", version = "0.8.2" }
+candle-metal-kernels = { path = "./candle-metal-kernels", version = "0.8.2" }
+candle-nn = { path = "./candle-nn", version = "0.8.2" }
+candle-onnx = { path = "./candle-onnx", version = "0.8.2" }
+candle-transformers = { path = "./candle-transformers", version = "0.8.2" }
 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 }
diff --git a/candle-flash-attn/Cargo.toml b/candle-flash-attn/Cargo.toml
index 816ee7da6..f031e23d8 100644
--- a/candle-flash-attn/Cargo.toml
+++ b/candle-flash-attn/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "candle-flash-attn"
-version = "0.8.1"
+version = "0.8.2"
 edition = "2021"
 
 description = "Flash attention layer for the candle ML framework."
@@ -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.1" }
+candle = { path = "../candle-core", features = ["cuda"], package = "candle-core", version = "0.8.2" }
 half = { version = "2.3.1", features = ["num-traits"] }
 
 [build-dependencies]
diff --git a/candle-kernels/Cargo.toml b/candle-kernels/Cargo.toml
index a8ebe58f1..b76d0e2d7 100644
--- a/candle-kernels/Cargo.toml
+++ b/candle-kernels/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "candle-kernels"
-version = "0.8.1"
+version = "0.8.2"
 edition = "2021"
 
 description = "CUDA kernels for Candle"
diff --git a/candle-metal-kernels/Cargo.toml b/candle-metal-kernels/Cargo.toml
index 0f1f1a7d7..3009451ab 100644
--- a/candle-metal-kernels/Cargo.toml
+++ b/candle-metal-kernels/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "candle-metal-kernels"
-version = "0.8.1"
+version = "0.8.2"
 edition = "2021"
 
 description = "Metal kernels for Candle"
diff --git a/candle-onnx/Cargo.toml b/candle-onnx/Cargo.toml
index f507e94e0..999203635 100644
--- a/candle-onnx/Cargo.toml
+++ b/candle-onnx/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "candle-onnx"
-version = "0.8.1"
+version = "0.8.2"
 edition = "2021"
 
 description = "ONNX support for Candle"
@@ -10,8 +10,8 @@ categories = ["science"]
 license = "MIT OR Apache-2.0"
 
 [dependencies]
-candle = { path = "../candle-core", package = "candle-core", version = "0.8.1" }
-candle-nn = { path = "../candle-nn", version = "0.8.1" }
+candle = { path = "../candle-core", package = "candle-core", version = "0.8.2" }
+candle-nn = { path = "../candle-nn", version = "0.8.2" }
 prost = "0.12.1"
 
 [build-dependencies]