diff --git a/CHANGELOG.md b/CHANGELOG.md index 9249f4f..9677fdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.6.0] - 2024-09-20 + +### 🐛 Bug Fixes + +- Stopping execution of blocking wasm code on timeout +- Formatting and handle wasi-http timeouts + ## [0.5.7] - 2024-09-12 ### 🐛 Bug Fixes @@ -11,6 +18,10 @@ All notable changes to this project will be documented in this file. - Formatting check - Setting prerelease flag for release candidates +### ⚙️ Miscellaneous Tasks + +- Release + ## [0.5.7-rc.2] - 2024-09-09 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index c161daf..15aeb2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "candle-wasi-nn" -version = "0.5.7" +version = "0.6.0" dependencies = [ "candle-core", "candle-nn", @@ -491,7 +491,7 @@ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "cli" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", @@ -790,7 +790,7 @@ dependencies = [ [[package]] name = "dictionary" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "http-backend" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "http-service" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", @@ -2361,7 +2361,7 @@ dependencies = [ [[package]] name = "reactor" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "tracing", @@ -2480,7 +2480,7 @@ dependencies = [ [[package]] name = "runtime" -version = "0.5.7" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 55cc8c9..fe6ba81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.5.7" +version = "0.6.0" edition = "2021" publish = false authors = ["FastEdge Development Team"]