From 4ae6b0faf27c584479a91783e7825b6bb66a1269 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Fri, 6 Dec 2024 19:00:18 +0100 Subject: [PATCH] chore: release v1.0.4 --- Cargo.lock | 4 ++-- dylo-cli/CHANGELOG.md | 7 +++++++ dylo-cli/Cargo.toml | 2 +- dylo-runtime/CHANGELOG.md | 6 ++++++ dylo-runtime/Cargo.toml | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a65a693..8924bed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -38,7 +38,7 @@ version = "1.0.1" [[package]] name = "dylo-cli" -version = "1.0.3" +version = "1.0.4" dependencies = [ "camino", "fs-err", @@ -56,7 +56,7 @@ dependencies = [ [[package]] name = "dylo-runtime" -version = "1.0.3" +version = "1.0.4" dependencies = [ "rubicon", ] diff --git a/dylo-cli/CHANGELOG.md b/dylo-cli/CHANGELOG.md index acd464e..89defaf 100644 --- a/dylo-cli/CHANGELOG.md +++ b/dylo-cli/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.4](https://github.com/bearcove/dylo/compare/dylo-cli-v1.0.3...dylo-cli-v1.0.4) - 2024-12-06 + +### Other + +- Use prettyplease rather than rustfmt +- Remove cfg(not(feature = "impl")) attributes + ## [1.0.3](https://github.com/bearcove/dylo/compare/dylo-cli-v1.0.2...dylo-cli-v1.0.3) - 2024-12-06 ### Other diff --git a/dylo-cli/Cargo.toml b/dylo-cli/Cargo.toml index c4b913d..47c3d89 100644 --- a/dylo-cli/Cargo.toml +++ b/dylo-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylo-cli" -version = "1.0.3" +version = "1.0.4" edition = "2021" authors = ["Amos Wenger "] description = "Generate dyn-compatible traits with proc macros" diff --git a/dylo-runtime/CHANGELOG.md b/dylo-runtime/CHANGELOG.md index 3b44eb6..8bb5277 100644 --- a/dylo-runtime/CHANGELOG.md +++ b/dylo-runtime/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.4](https://github.com/bearcove/dylo/compare/dylo-runtime-v1.0.3...dylo-runtime-v1.0.4) - 2024-12-06 + +### Other + +- Remove cfg(not(feature = "impl")) attributes + ## [1.0.3](https://github.com/bearcove/dylo/compare/dylo-runtime-v1.0.2...dylo-runtime-v1.0.3) - 2024-12-06 ### Other diff --git a/dylo-runtime/Cargo.toml b/dylo-runtime/Cargo.toml index 757ecf4..e8a388e 100644 --- a/dylo-runtime/Cargo.toml +++ b/dylo-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylo-runtime" -version = "1.0.3" +version = "1.0.4" edition = "2021" authors = ["Amos Wenger "] description = "Dynamic library loader for con traits"