From 41e28b6dafada7121904a7a28611c813e89c80e5 Mon Sep 17 00:00:00 2001 From: Kirpal Grewal Date: Mon, 18 Nov 2024 10:46:11 +0000 Subject: [PATCH 1/3] update candle --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1138429..fc5ad29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,15 +15,15 @@ exclude = ["*.ipynb"] [dependencies] -candle-core = "0.7.2" -candle-nn = "0.7.2" +candle-core = "0.8.0" +candle-nn = "0.8.0" log = "0.4.20" [dev-dependencies] anyhow = { version = "1", features = ["backtrace"] } assert_approx_eq = "1.1.0" -candle-datasets = "0.7.2" +candle-datasets = "0.8.0" clap = { version = "4.4.6", features = ["derive"] } criterion = { version = "0.5.1", features = ["html_reports"] } From cc631348a86944f8a73d54d5dd21b5c8d05dadf8 Mon Sep 17 00:00:00 2001 From: Kirpal Grewal Date: Mon, 18 Nov 2024 10:47:29 +0000 Subject: [PATCH 2/3] changelog --- Changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Changelog.md b/Changelog.md index bf33e6f..9836ae8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## v0.8.0 (2024-11-18) + +* Bump candle requirtement to 0.8.0: this is considered a breaking change due to the reliance of this library on candle-core and candle-nn + ## v0.5.0 (2024-02-28) * Bump candle requirtement to 0.5.0: this is considered a breaking change due to the reliance of this library on candle-core and candle-nn From e4cea75c75df817ba0ac9c575a7d4e30aadaf9cc Mon Sep 17 00:00:00 2001 From: Kirpal Grewal Date: Mon, 18 Nov 2024 10:54:12 +0000 Subject: [PATCH 3/3] version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fc5ad29..f67e8bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "candle-optimisers" -version = "0.7.2" +version = "0.8.0" edition = "2021" readme = "README.md" license = "MIT"