From 45d9d0b3ef6d2c22372400411d627c4626f1dcfa Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Mon, 21 Oct 2024 16:30:19 +0300 Subject: [PATCH] chore: Release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76acc74..0b9f92f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,27 @@ All notable changes to this project will be documented in this file. +## [0.8.0] - 2024-10-21 + +### 🚀 Features + +- Impl draft secret libs +- Secret common lib implementation + +### 🐛 Bug Fixes + +- Minor clippy error fix + ## [0.7.0] - 2024-10-16 ### 🚜 Refactor - Drop async from write_stats method +### ⚙️ Miscellaneous Tasks + +- Release + ## [0.6.0] - 2024-09-20 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index a219e85..a787616 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "candle-wasi-nn" -version = "0.7.0" +version = "0.8.0" dependencies = [ "candle-core", "candle-nn", @@ -497,7 +497,7 @@ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -788,7 +788,7 @@ dependencies = [ [[package]] name = "dictionary" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -1344,7 +1344,7 @@ dependencies = [ [[package]] name = "http-backend" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "http-service" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -2346,7 +2346,7 @@ dependencies = [ [[package]] name = "reactor" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "tracing", @@ -2465,7 +2465,7 @@ dependencies = [ [[package]] name = "runtime" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -2622,7 +2622,7 @@ dependencies = [ [[package]] name = "secret" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index b77c0fa..29b3217 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.7.0" +version = "0.8.0" edition = "2021" publish = false authors = ["FastEdge Development Team"]