diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8ad48..3a5a5c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## [# 1.0.0 (2023-10-05)](https://github.com/boa-dev/ryu-js/compare/v0.2.2...v1.0.0) - ECMAScript compliant implementation of `Number.prototype.toFixed()` -### Breaking changes +### Breaking Changes - Minimum rust version has been bumped from `1.36.0` to `1.64.0`. diff --git a/README.md b/README.md index 57bd3ac..3ff74d4 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ # Ryū-js -Ryū-js is a fork of the [ryu][ryu-crate] crate adjusted to comply to the ECMAScript [number-to-string][number-to-string] algorithm. +Ryū-js is a fork of the [ryu][ryu-crate] crate adjusted to comply to the ECMAScript [number-to-string][number-to-string] algorithm, also implementing [`Number.prototype.toFixed()`][number-to-fixed] compliant conversion. [ryu-crate]: https://crates.io/crates/ryu [number-to-string]: https://tc39.es/ecma262/#sec-numeric-types-number-tostring +[number-to-fixed]: https://tc39.es/ecma262/#sec-number.prototype.tofixed Pure Rust implementation of Ryū, an algorithm to quickly convert floating point numbers to decimal strings. @@ -23,7 +24,7 @@ uses nothing from the Rust standard library so is usable from no_std crates.* ```toml [dependencies] -ryu-js = "0.2" +ryu-js = "1.0" ```
@@ -38,8 +39,6 @@ fn main() { } ``` -
- ## Performance