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"