From 9913571a3bcb66468f8b19fb6021e0d00161e07c Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Fri, 22 Nov 2024 18:31:54 +0200 Subject: [PATCH] chore: Release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13a6ce0..abe9993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.9.0] - 2024-11-22 + +### 🐛 Bug Fixes + +- Process http body chunks +- Adding on_response handler to process the end of body chunks +- Moving unit test to http sub-module + +## [0.8.1] - 2024-11-11 + +### ⚙️ Miscellaneous Tasks + +- Release + ## [0.8.0] - 2024-10-21 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index a13d574..a9a3f1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "candle-wasi-nn" -version = "0.8.1" +version = "0.9.0" dependencies = [ "candle-core", "candle-nn", @@ -498,7 +498,7 @@ checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7" [[package]] name = "cli" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -789,7 +789,7 @@ dependencies = [ [[package]] name = "dictionary" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -1368,7 +1368,7 @@ dependencies = [ [[package]] name = "http-backend" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -1425,7 +1425,7 @@ dependencies = [ [[package]] name = "http-service" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -2504,7 +2504,7 @@ dependencies = [ [[package]] name = "reactor" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "tracing", @@ -2623,7 +2623,7 @@ dependencies = [ [[package]] name = "runtime" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -2779,7 +2779,7 @@ dependencies = [ [[package]] name = "secret" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index cd4663c..db9a343 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.8.1" +version = "0.9.0" edition = "2021" publish = false authors = ["FastEdge Development Team"]