From 9918f7ba51521dbc23d4a688607840ef4060de32 Mon Sep 17 00:00:00 2001 From: Michael Bryan Date: Tue, 19 Sep 2023 15:42:41 +0100 Subject: [PATCH] chore(main): release wasmer-toml 0.8.0 --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 77c0d292..d6a5f76b 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bf29267..428af3ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.8.0](https://github.com/wasmerio/wasmer-toml/compare/wasmer-toml-v0.7.0...wasmer-toml-v0.8.0) (2023-09-19) + + +### ⚠ BREAKING CHANGES + +* Removed some unnecessary command getters and switched others from returning owned copies to returning references + +### Features + +* Commands can now use modules from other dependencies with the `module = "my/dependency:module"` syntax ([88b784d](https://github.com/wasmerio/wasmer-toml/commit/88b784dc6ed5ddae6c2edc69c82c416be62cef35)) +* Removed some unnecessary command getters and switched others from returning owned copies to returning references ([88b784d](https://github.com/wasmerio/wasmer-toml/commit/88b784dc6ed5ddae6c2edc69c82c416be62cef35)) + + +### Miscellaneous Chores + +* Release 0.8.0 ([c885839](https://github.com/wasmerio/wasmer-toml/commit/c8858399767cec116f8560a5e913bdfdf3e00771)) + ## [0.7.0](https://github.com/wasmerio/wasmer-toml/compare/wasmer-toml-v0.6.0...wasmer-toml-v0.7.0) (2023-07-20) diff --git a/Cargo.lock b/Cargo.lock index 0cbcb478..b1bad782 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,7 +336,7 @@ checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68" [[package]] name = "wasmer-toml" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "derive_builder", diff --git a/Cargo.toml b/Cargo.toml index b01c8d52..f0d6ef2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-toml" -version = "0.7.0" +version = "0.8.0" description = "A parser for the wasmer.toml format used by Wasmer" edition = "2021" license = "MIT"