Skip to content

Commit

Permalink
Bump to version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ajtribick committed Nov 17, 2022
1 parent b34c3c8 commit 808c31e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 0.6.1

* Re-enable MinGW support via libm.

## Version 0.6

* Add const constructor `from_f64`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twofloat"
version = "0.6.0"
version = "0.6.1"
authors = ["Andrew Tribick"]

keywords = ["float", "precision", "numerics", "floating-point", "arithmetic"]
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ addressed in future releases.

This library depends on the `std` implementations of the floating point
mathematical functions, which in turn depend on the C standard library
implementation, which may have variations between platforms. In particular,
the MinGW platforms `i686-pc-windows-gnu` and `x86_64-pc-windows-gnu` do not
pass the test suite, so these platforms are currently unsupported. In future
it may be possible to use `libm` to address this issue.
implementation, which may have variations between platforms.

## References

Expand Down
5 changes: 1 addition & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ possible through the Serde library.
This library depends on the `std` implementations of the floating point
mathematical functions, which in turn depend on the C standard library
implementation, which may have variations between platforms. In particular,
the MinGW platforms `i686-pc-windows-gnu` and `x86_64-pc-windows-gnu` do not
pass the test suite, so these platforms are currently unsupported. In future
it may be possible to use `libm` to address this issue.
implementation, which may have variations between platforms.
## References
Expand Down

0 comments on commit 808c31e

Please sign in to comment.