Skip to content

Commit

Permalink
Version 1.34 (#640)
Browse files Browse the repository at this point in the history
* Version 1.34
* Corrected version in readme file
  • Loading branch information
paupino committed Jan 31, 2024
1 parent aa2c3d3 commit bacc60b
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .buildnumber
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1
33
1
34
0
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
# Version History

## 1.x
## 1.34.0

### Added

* `rust_decimal_macros` can now be utilized using the `macros` feature flag.
* `rust_decimal_macros` can now be utilized using the `macros` feature flag. ([#628](https://github.com/paupino/rust-decimal/pull/628))

### Fixed

* Reimplement `pow` function to more effectively handle larger exponents ([#638](https://github.com/paupino/rust-decimal/pull/638))
* Fixes error handling when parsing a `Decimal` from a string when a decimal point or placeholder is at the rounding position ([#636](https://github.com/paupino/rust-decimal/pull/636))

### Changed

* Added documentation for serde features as well as a few examples.
* Added documentation for serde features as well as a few examples. ([#630](https://github.com/paupino/rust-decimal/pull/630))
* Documentation and rustdoc generation improvements ([#633](https://github.com/paupino/rust-decimal/pull/633), [#634](https://github.com/paupino/rust-decimal/pull/634))

### Credit

Thank you to [@robjtede](https://github.com/robjtede) and [@schungx](https://github.com/schungx) for your contributions this release.

Last but not least, a special thank you to [@Tony-Samuels](https://github.com/Tony-Samuels) for your help with managing `rust_decimal`!

## 1.33.1

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "rust_decimal"
readme = "./README.md"
repository = "https://github.com/paupino/rust-decimal"
rust-version = "1.60"
version = "1.33.1"
version = "1.34.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Alternatively, you can edit your `Cargo.toml` directly and run `cargo update`:

```toml
[dependencies]
rust_decimal = { version = "1.33", features = ["macros"] }
rust_decimal = { version = "1.34", features = ["macros"] }
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion examples/serde-json-scenarios/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde-json-scenarios"
version = "0.0.0"
version = "1.34.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors = ["Automatically generated"]
edition = "2021"
name = "rust-decimal-fuzz"
publish = false
version = "1.33.1"
version = "1.34.0"

[package.metadata]
cargo-fuzz = true
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_decimal_macros"
version = "1.33.1"
version = "1.34.0"
authors = ["Paul Mason <paul@form1.co.nz>"]
edition = "2021"
description = "Shorthand macros to assist creating Decimal types."
Expand Down

0 comments on commit bacc60b

Please sign in to comment.