Skip to content

Commit

Permalink
Version 1.18.0 (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino committed Dec 1, 2021
1 parent b4e72bc commit 6766baf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = "MIT"
name = "rust_decimal"
readme = "./README.md"
repository = "https://github.com/paupino/rust-decimal"
version = "1.17.0"
version = "1.18.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To get started, add `rust_decimal` and optionally `rust_decimal_macros` to your

```toml
[dependencies]
rust_decimal = "1.17"
rust_decimal_macros = "1.17"
rust_decimal = "1.18"
rust_decimal_macros = "1.18"
```

## Usage
Expand Down
8 changes: 8 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Version History

## 1.18.0

* Fixes integer handling for `to_f64` when scale is set to `0`. [#443](https://github.com/paupino/rust-decimal/pull/443).
Thank you [@anatols](https://github.com/anatols) for creating this fix.
* Add support for Rocket Forms using the feature flag `rocket-traits`. [#445](https://github.com/paupino/rust-decimal/pull/445).
Thank you [@Misterio77](https://github.com/Misterio77) for putting this together.
* Add Diesel MySQL support, enabled by the feature flag `db-diesel-mysq`. [#446](https://github.com/paupino/rust-decimal/pull/446).

## 1.17.0

* Fixes panic when display precision was specified greater than 30. [#428](https://github.com/paupino/rust-decimal/issues/428).
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_decimal_macros"
version = "1.17.0"
version = "1.18.0"
authors = ["Paul Mason <paul@form1.co.nz>"]
edition = "2018"
description = "Shorthand macros to assist creating Decimal types."
Expand All @@ -12,7 +12,7 @@ categories = ["science","data-structures"]
license = "MIT"

[dependencies]
rust_decimal = { path = "..", version = "1.17.0" }
rust_decimal = { path = "..", version = "1.18.0" }
quote = "1.0"

[features]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
//!
//! ```toml
//! [dependencies]
//! rust_decimal = "1.17"
//! rust_decimal_macros = "1.17"
//! rust_decimal = "1.18"
//! rust_decimal_macros = "1.18"
//! ```
//!
//! ## Usage
Expand Down

0 comments on commit 6766baf

Please sign in to comment.