Skip to content

Commit

Permalink
Version 1.16 (paupino#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino authored Sep 14, 2021
1 parent 0d83102 commit 9e55f7e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 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.15.0"
version = "1.16.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
12 changes: 9 additions & 3 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.15"
rust_decimal_macros = "1.15"
rust_decimal = "1.16"
rust_decimal_macros = "1.16"
```

## Usage
Expand Down Expand Up @@ -158,4 +158,10 @@ libraries, this crate can be compiled with `--no-default-features`.

## Building

Please refer to the [Build document](BUILD.md) for more information on building and testing Rust Decimal.
Please refer to the [Build document](BUILD.md) for more information on building and testing Rust Decimal.

## Minimum Rust Compiler Version

This library maintains support for rust compiler versions at least one year old and only updates the minimum version if and
when required. The current minimum compiler version is [`1.46.0`](https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1460-2020-08-27)
which was released on `2020-08-27`.
11 changes: 11 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Version History

## 1.16.0

* Implement `sin`/`cos`/`tan` functions which are enabled within the `maths` feature. [#413](https://github.com/paupino/rust-decimal/pull/413).
* Implement `round_sf` and `round_sf_with_strategy` to enable significant figure rounding. [#421](https://github.com/paupino/rust-decimal/pull/421)
* Remove unnecessary `std` feature from `arrayvec` usage [#417](https://github.com/paupino/rust-decimal/pull/417).
* Adhoc benchmarking and fuzz tooling improvements [#412](https://github.com/paupino/rust-decimal/pull/412),
[#415](https://github.com/paupino/rust-decimal/pull/415), [#416](https://github.com/paupino/rust-decimal/pull/416),
[#418](https://github.com/paupino/rust-decimal/pull/418).

Thank you to [@c410-f3r](https://github.com/c410-f3r) for all your help with fuzz and benchmarking improvements!

## 1.15.0

A minor bug and feature release which adds a couple of new functions as well as cleans up some documentation:
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.15.0"
version = "1.16.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.15.0" }
rust_decimal = { path = "..", version = "1.16.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.15"
//! rust_decimal_macros = "1.15"
//! rust_decimal = "1.16"
//! rust_decimal_macros = "1.16"
//! ```
//!
//! ## Usage
Expand Down

0 comments on commit 9e55f7e

Please sign in to comment.