From af9f98038942aa69c0c728d021ea42909716d44c Mon Sep 17 00:00:00 2001 From: "eryx-release-plz[bot]" <294124384+eryx-release-plz[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 15:33:51 +0000 Subject: [PATCH] chore: release v0.8.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 10 +++++----- 3 files changed, 30 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8d6940..ddf732af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `eryx-precompile` - [0.8.0](https://github.com/eryx-org/eryx/compare/eryx-precompile-v0.7.2...eryx-precompile-v0.8.0) - 2026-09-17 + +### Other +- update Cargo.lock dependencies + +## `eryx` - [0.8.0](https://github.com/eryx-org/eryx/compare/eryx-v0.7.2...eryx-v0.8.0) - 2026-09-17 + +### Added +- *(net)* add explicit connection cleanup for reused sessions ([#446](https://github.com/eryx-org/eryx/pull/446)) + +## `eryx-vfs` - [0.8.0](https://github.com/eryx-org/eryx/compare/eryx-vfs-v0.7.2...eryx-vfs-v0.8.0) - 2026-09-17 + +### Other +- *(vfs)* replace cap-std with cap-primitives ([#436](https://github.com/eryx-org/eryx/pull/436)) + ## `eryx-precompile` - [0.7.2](https://github.com/eryx-org/eryx/compare/eryx-precompile-v0.7.1...eryx-precompile-v0.7.2) - 2026-09-11 ### Other diff --git a/Cargo.lock b/Cargo.lock index f4aa9f45..0b78a0ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "eryx" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -1164,7 +1164,7 @@ dependencies = [ [[package]] name = "eryx-linker-wasm" -version = "0.7.2" +version = "0.8.0" dependencies = [ "wasm-bindgen", "wit-component 0.259.0", @@ -1172,7 +1172,7 @@ dependencies = [ [[package]] name = "eryx-macros" -version = "0.7.2" +version = "0.8.0" dependencies = [ "eryx", "proc-macro2", @@ -1185,7 +1185,7 @@ dependencies = [ [[package]] name = "eryx-precompile" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "clap", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "eryx-python" -version = "0.7.2" +version = "0.8.0" dependencies = [ "async-trait", "eryx", @@ -1217,7 +1217,7 @@ dependencies = [ [[package]] name = "eryx-runtime" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "futures", @@ -1238,7 +1238,7 @@ dependencies = [ [[package]] name = "eryx-server" -version = "0.7.2" +version = "0.8.0" dependencies = [ "async-trait", "clap", @@ -1272,7 +1272,7 @@ dependencies = [ [[package]] name = "eryx-vfs" -version = "0.7.2" +version = "0.8.0" dependencies = [ "ambient-authority", "anyhow", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "eryx-wasm-runtime" -version = "0.7.2" +version = "0.8.0" dependencies = [ "pyo3", "tokio", @@ -5252,7 +5252,7 @@ dependencies = [ [[package]] name = "wit-dylib-ffi" -version = "0.7.2" +version = "0.8.0" [[package]] name = "wit-parser" diff --git a/Cargo.toml b/Cargo.toml index 1b52dacf..0c2e7e7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = ["crates/*"] # - cargo-nextest: Fast test runner (`cargo nextest run`) [workspace.package] -version = "0.7.2" +version = "0.8.0" edition = "2024" rust-version = "1.98.1" license = "MIT OR Apache-2.0" @@ -26,10 +26,10 @@ clap = { version = "^4.6.6", features = ["derive", "env"] } #unified criterion = { version = "0.8", features = ["async_tokio"] } # benchmarking crossterm = "0.29" # terminal control dashmap = "6" # concurrent maps -eryx = { path = "crates/eryx", version = "^0.7.2" } -eryx-macros = { path = "crates/eryx-macros", version = "^0.7.2" } -eryx-runtime = { path = "crates/eryx-runtime", version = "^0.7.2" } #unified -eryx-vfs = { path = "crates/eryx-vfs", version = "^0.7.2" } #unified +eryx = { path = "crates/eryx", version = "^0.8.0" } +eryx-macros = { path = "crates/eryx-macros", version = "^0.8.0" } +eryx-runtime = { path = "crates/eryx-runtime", version = "^0.8.0" } #unified +eryx-vfs = { path = "crates/eryx-vfs", version = "^0.8.0" } #unified flate2 = "1.0" futures = "0.3" futures-concurrency = "7.6"