diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bfb36f..751b478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Version History +## 1.34.2 + +### Fixed + +* Deprecate `macros` feature until circular dependency issue is resolved properly. + ## 1.34.1 ### Fixed diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 258c3b8..16085bb 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_decimal_macros" -version = "1.34.1" +version = "1.34.2" authors = ["Paul Mason "] edition = "2021" description = "Shorthand macros to assist creating Decimal types." @@ -12,8 +12,7 @@ categories = ["science","data-structures"] license = "MIT" [dependencies] -# This needs to be a locked version until we can remove this dependency altogether -rust_decimal = { version = "=1.33.1", default-features = false } +rust_decimal = { version = "1.33", default-features = false } quote = "1.0" [dev-dependencies]