Skip to content

Commit

Permalink
Version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino committed Jan 21, 2021
1 parent f99c020 commit fc9fcd1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "rust_decimal"
readme = "./README.md"
repository = "https://github.com/paupino/rust-decimal"
version = "1.9.0"
version = "1.10.0"

[dependencies]
byteorder = { default-features = false, optional = true, version = "1.3" }
Expand Down
9 changes: 6 additions & 3 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Version History

## Unreleased
## 1.10.0

* Upgrade `postgres` to `0.19` and `tokio-postgres` to `0.7`.
* Faster `serde` serialization by preventing heap allocation.
* Alternative division algorithm which provides significant speed improvements. The new algorithms are enabled by default,
but can be disabled with the feature: `legacy-ops`
but can be disabled with the feature: `legacy-ops`. Further work to improve other operations will
be made available in future versions.
* Add `TryFrom` for `f32`/`f64` to/from Decimal

Thank you for the the community help and support for making this release happen, in particular:
[jean-airoldie](https://github.com/jean-airoldie) and [gakonst](https://github.com/gakonst).
[jean-airoldie](https://github.com/jean-airoldie), [gakonst](https://github.com/gakonst), [okaneco](https://github.com/okaneco) and
[c410-f3r](https://github.com/c410-f3r).

## 1.9.0

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.9.0"
version = "1.10.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.9.0" }
rust_decimal = { path = "..", version = "1.10.0" }
quote = "1.0"

[lib]
Expand Down

0 comments on commit fc9fcd1

Please sign in to comment.