diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 4e31c15179..acbe2e7346 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.23.1" + ".": "0.23.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f187618c9..7282e32ba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.23.2](https://github.com/fluencelabs/nox/compare/nox-v0.23.1...nox-v0.23.2) (2024-03-10) + + +### Bug Fixes + +* **listener:** save pending units on start; refresh state on subs drop ([#2158](https://github.com/fluencelabs/nox/issues/2158)) ([86da267](https://github.com/fluencelabs/nox/commit/86da267ab3d2958d0f33bdeaeb0f058475a6ed9c)) + ## [0.23.1](https://github.com/fluencelabs/nox/compare/nox-v0.23.0...nox-v0.23.1) (2024-03-09) diff --git a/Cargo.lock b/Cargo.lock index 570650d063..396d0c6441 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5360,7 +5360,7 @@ version = "0.1.0" [[package]] name = "nox" -version = "0.23.1" +version = "0.23.2" dependencies = [ "air-interpreter-fs", "air-interpreter-wasm", diff --git a/nox/Cargo.toml b/nox/Cargo.toml index 4488090b81..068a014161 100644 --- a/nox/Cargo.toml +++ b/nox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nox" -version = "0.23.1" +version = "0.23.2" authors = ["Fluence Labs"] description = "Node implementing peer functionality in the Fluence p2p network" edition = "2021"