diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ff6a2..bc05f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [0.3.5] - 2020-07-26 + +* Bugfix: Incorrect metadata for CZK, HUF, ZMK [@zacharra] +* Feature: Money objects can be multiplied by Decimals [@sjoerdsimons] + ## [0.3.4] - 2020-04-19 * Bugfix: from_string rejects incorrect digit separators like 1.00,00 EUR [@sjoerdsimons] @@ -44,4 +49,5 @@ ### v0.4.0 -* Currency Declaration: Allow declaration of new currency types (e.g. a cryptocurrency). \ No newline at end of file +* Currency Declaration: Allow declaration of new currency types (e.g. a cryptocurrency). +* Serialization & Deserialization support. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index b7272df..2b8d38a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusty-money" -version = "0.3.4" +version = "0.3.5" authors = ["Varun Srinivasan "] edition = "2018" license = "MIT" @@ -15,6 +15,6 @@ categories = ["data-structures", "rust-patterns"] [dependencies] -rust_decimal = "1.4.1" -rust_decimal_macros = "1.4.1" +rust_decimal = "1.7.0" +rust_decimal_macros = "1.7.0" lazy_static = "1.4.0"