From 74f1a06b7df6edf92118140edb5cd300bf5ace45 Mon Sep 17 00:00:00 2001 From: Paul Mason Date: Fri, 30 Apr 2021 08:57:10 +1200 Subject: [PATCH] Version 1.12.3 --- Cargo.toml | 2 +- VERSION.md | 4 ++++ macros/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fdd9a045..38277cc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "rust_decimal" readme = "./README.md" repository = "https://github.com/paupino/rust-decimal" -version = "1.12.2" +version = "1.12.3" exclude = [ "tests/generated/*" ] [dependencies] diff --git a/VERSION.md b/VERSION.md index 6b2f8e14..7b896aab 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,5 +1,9 @@ # Version History +## 1.12.3 + +Fixes an issue [#361](https://github.com/paupino/rust-decimal/issues/361) when rounding a small number towards zero. + ## 1.12.2 Fixes small regression whereby `0 - 0` was producing `-0`. Thank you [@KonishchevDmitry](https://github.com/KonishchevDmitry) for diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1f3c1d5b..256078dd 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_decimal_macros" -version = "1.12.2" +version = "1.12.3" authors = ["Paul Mason "] edition = "2018" description = "Shorthand macros to assist creating Decimal types." @@ -12,7 +12,7 @@ categories = ["science","data-structures"] license = "MIT" [dependencies] -rust_decimal = { path = "..", version = "1.12.2" } +rust_decimal = { path = "..", version = "1.12.3" } quote = "1.0" [features]