From d72e7870b6f2ef8f6f671c866fb55f5478eea70e Mon Sep 17 00:00:00 2001 From: Paul Mason Date: Thu, 1 Feb 2024 08:21:45 -0800 Subject: [PATCH] Bump macros version --- CHANGELOG.md | 6 ++++++ macros/Cargo.toml | 5 ++--- 2 files changed, 8 insertions(+), 3 deletions(-) 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]