Skip to content

Commit

Permalink
Version 1.19.0 (paupino#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino authored Dec 24, 2021
1 parent 3e771d9 commit e116046
Show file tree
Hide file tree
Showing 5 changed files with 19 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.18.0"
version = "1.19.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.18"
rust_decimal_macros = "1.18"
rust_decimal = "1.19"
rust_decimal_macros = "1.19"
```

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

## 1.19.0

This is a minor dot release and contains library updates ([#334](https://github.com/paupino/rust-decimal/pull/334)) and
expanded scope in `prelude` to include `num_traits::Signed` ([#450](https://github.com/paupino/rust-decimal/pull/450)).
While subtle, it also expands the way towards some bigger improvements including variable precision.

Of a larger note, the minimum Rust compiler version has been updated so we can start utilizing various compiler features
(such as const generics). The miminum compiler version is now `1.51.0`.

Thank you to [@c410-f3r](https://github.com/c410-f3r) and [@jracollins](https://github.com/jracollins) for your contributions
to this release.

## 1.18.0

* Fixes integer handling for `to_f64` when scale is set to `0`. [#443](https://github.com/paupino/rust-decimal/pull/443).
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.18.0"
version = "1.19.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.18.0" }
rust_decimal = { path = "..", version = "1.19.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.18"
//! rust_decimal_macros = "1.18"
//! rust_decimal = "1.19"
//! rust_decimal_macros = "1.19"
//! ```
//!
//! ## Usage
Expand Down

0 comments on commit e116046

Please sign in to comment.