From 1cd151e58dc17052d33cbd93d580c580c4d0e6d5 Mon Sep 17 00:00:00 2001 From: Varun Srinivasan Date: Sun, 26 Jul 2020 20:12:34 -0700 Subject: [PATCH] Bump version to 0.3.5 --- CHANGELOG.md | 8 +++++++- Cargo.toml | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) 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"