From e3a76cf774203b7641128bc617ceba7c67b42131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Leegwater=20Sim=C3=B5es?= Date: Wed, 26 Apr 2023 12:18:45 +0200 Subject: [PATCH] Bump versions to `0.3.0` --- piecrust-uplink/CHANGELOG.md | 14 +++++++++++--- piecrust-uplink/Cargo.toml | 2 +- piecrust/CHANGELOG.md | 15 +++++++++++++-- piecrust/Cargo.toml | 4 ++-- 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/piecrust-uplink/CHANGELOG.md b/piecrust-uplink/CHANGELOG.md index 296e88c6..d26c53fc 100644 --- a/piecrust-uplink/CHANGELOG.md +++ b/piecrust-uplink/CHANGELOG.md @@ -7,13 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2023-04-26 + ### Added -- Added documentation for `piecrust-uplink::types`. [#139] +- Add documentation for `piecrust-uplink::types`. [#139] + +### Changed + +- Rename `ModuleError` enum variants to be upper case. ### Removed -- Removed deprecated `alloc_error_handler`. [#192] +- Remove deprecated `alloc_error_handler`. [#192] ## [0.1.0] - 2023-03-15 @@ -24,5 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#139]: https://github.com/dusk-network/piecrust/pull/139 -[Unreleased]: https://github.com/dusk-network/piecrust/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/dusk-network/piecrust/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/dusk-network/piecrust/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/dusk-network/piecrust/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/dusk-network/piecrust/releases/tag/v0.1.0 diff --git a/piecrust-uplink/Cargo.toml b/piecrust-uplink/Cargo.toml index e37ba448..f663a196 100644 --- a/piecrust-uplink/Cargo.toml +++ b/piecrust-uplink/Cargo.toml @@ -7,7 +7,7 @@ categories = ["wasm", "no-std", "cryptography::cryptocurrencies"] keywords = ["virtual", "machine", "smart", "contract", "wasm"] repository = "https://github.com/dusk-network/piecrust" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MPL-2.0" diff --git a/piecrust/CHANGELOG.md b/piecrust/CHANGELOG.md index aeffe189..84d848e1 100644 --- a/piecrust/CHANGELOG.md +++ b/piecrust/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2023-04-26 + +### Changed + +- Rename `DeployData` to `ModuleData` + +### Removed + +- Remove `VM::genesis_session` in favor of config parameters in `VM::session` + ## [0.2.0] - 2023-04-06 ### Added @@ -43,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#93]: https://github.com/dusk-network/piecrust/issues/93 -[Unreleased]: https://github.com/dusk-network/piecrust/compare/v0.2.0...HEAD -[0.2.0]: https://github.com/dusk-network/piecrust/releases/tag/v0.2.0 +[Unreleased]: https://github.com/dusk-network/piecrust/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/dusk-network/piecrust/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/dusk-network/piecrust/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/dusk-network/piecrust/releases/tag/v0.1.0 diff --git a/piecrust/Cargo.toml b/piecrust/Cargo.toml index 97d50ba9..101a3ca7 100644 --- a/piecrust/Cargo.toml +++ b/piecrust/Cargo.toml @@ -7,13 +7,13 @@ categories = ["wasm", "no-std", "cryptography::cryptocurrencies"] keywords = ["virtual", "machine", "smart", "contract", "wasm"] repository = "https://github.com/dusk-network/piecrust" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "MPL-2.0" [dependencies] -piecrust-uplink = { version = "0.2.0", path = "../piecrust-uplink" } +piecrust-uplink = { version = "0.3.0", path = "../piecrust-uplink" } wasmer = "=3.1" wasmer-vm = "=3.1"