|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
3 |
| -# [# 0.2.2 (2020-12-16)](https://github.com/boa-dev/ryu-js/compare/v0.2.1...v0.2.2) |
| 3 | +## [# 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()` |
4 | 4 |
|
5 |
| -Internal improvements: |
| 5 | +### Breaking changes |
| 6 | + |
| 7 | +- Minimum rust version has been bumped from `1.36.0` to `1.64.0`. |
| 8 | + |
| 9 | +### Feature Enhancements |
| 10 | + |
| 11 | +- [FEATURE](https://github.com/boa-dev/ryu-js/pull/38): |
| 12 | + ECMAScript specification complaint `Number.prototype.toFixed()` implementation. (@HalidOdat) |
| 13 | + |
| 14 | +### Internal Improvements |
| 15 | + |
| 16 | +- [INTERNAL #1](https://github.com/boa-dev/ryu-js/pull/19): Added dependabot PRs. (@Razican) |
| 17 | +- [INTERNAL #2](https://github.com/boa-dev/ryu-js/pull/21): Sync upstream/master. (@HalidOdat) |
| 18 | +- [INTERNAL #3](https://github.com/boa-dev/ryu-js/pull/27): Add issue and PR templates. (@HalidOdat) |
| 19 | +- [INTERNAL #4](https://github.com/boa-dev/ryu-js/pull/28): Switch to criterion for benchmarking. (@HalidOdat) |
| 20 | +- [INTERNAL #5](https://github.com/boa-dev/ryu-js/pull/29): Benchmark CI. (@HalidOdat) |
| 21 | +- [INTERNAL #6](https://github.com/boa-dev/ryu-js/pull/38): Enable merge queue. (@jedel1043) |
| 22 | + |
| 23 | +## [# 0.2.2 (2020-12-16)](https://github.com/boa-dev/ryu-js/compare/v0.2.1...v0.2.2) |
| 24 | + |
| 25 | +### Internal Improvements |
6 | 26 |
|
7 | 27 | - [INTERNAL #17](https://github.com/boa-dev/ryu-js/pull/17) Sync to `dtolnay/ryu` master
|
8 | 28 | - [INTERNAL #16](https://github.com/boa-dev/ryu-js/pull/16) Sync to `dtolnay/ryu` master
|
9 | 29 |
|
10 |
| -# [# 0.2.1 (2020-11-11)](https://github.com/boa-dev/ryu-js/compare/v0.2.0...v0.2.1) |
| 30 | +## [# 0.2.1 (2020-11-11)](https://github.com/boa-dev/ryu-js/compare/v0.2.0...v0.2.1) |
11 | 31 |
|
12 |
| -Feature enhancements: |
| 32 | +### Feature Enhancements |
13 | 33 |
|
14 | 34 | - [FEATURE #11](https://github.com/boa-dev/ryu-js/pull/11):
|
15 | 35 | Null check in unsafe `format32` and `format64` (in debug mode). (@HalidOdat)
|
16 | 36 |
|
17 |
| -Bug fixes: |
| 37 | +### Bug Fixes |
18 | 38 |
|
19 | 39 | - BUG [#12](https://github.com/boa-dev/ryu-js/pull/12) [#13](https://github.com/boa-dev/ryu-js/pull/13):
|
20 | 40 | Documentation fixes (@HalidOdat)
|
21 | 41 |
|
22 |
| -# [# 0.2.0 (2020-07-14) - ECMAScript compliant `f32` conversions Release](https://github.com/boa-dev/ryu-js/compare/v0.1.0...v0.2.0) |
| 42 | +## [# 0.2.0 (2020-07-14) - ECMAScript compliant `f32` conversions Release](https://github.com/boa-dev/ryu-js/compare/v0.1.0...v0.2.0) |
23 | 43 |
|
24 |
| -Feature enhancements: |
| 44 | +### Feature Enhancements |
25 | 45 |
|
26 | 46 | - [FEATURE #6](https://github.com/boa-dev/ryu-js/pull/6):
|
27 | 47 | ECMAScript specification complaint `f32` to string conversions. (@HalidOdat)
|
28 | 48 |
|
29 |
| -Bug fixes: |
| 49 | +### Bug Fixes |
30 | 50 |
|
31 | 51 | - [BUG #2](https://github.com/boa-dev/ryu-js/pull/2) (@HalidOdat):
|
32 | 52 | - Fixed compatibility with rust `1.31.0`.
|
33 | 53 | - Fixed converting from `-0.0` to `0`.
|
34 | 54 | - Fixed max length docs for `format32` and `format64`.
|
35 | 55 |
|
36 |
| -Internal improvements: |
| 56 | +### Internal Improvements |
37 | 57 |
|
38 | 58 | - [INTERNAL #2](https://github.com/boa-dev/ryu-js/pull/2):
|
39 | 59 | Optimized `0` and `-0` to string conversion (@HalidOdat)
|
40 | 60 |
|
41 |
| -# 0.1.0 (2020-07-13) - ECMAScript compliant `f64` conversions Release |
| 61 | +# # 0.1.0 (2020-07-13) - ECMAScript compliant `f64` conversions Release |
42 | 62 |
|
43 | 63 | This is the initial release of this crate, it introduces ECMAScript compliant `f64` to string conversions.
|
44 | 64 |
|
45 |
| -Feature enhancements: |
| 65 | +### Feature Enhancements |
46 | 66 |
|
47 | 67 | - [FEATURE](https://github.com/boa-dev/ryu-js/commit/ed781f5772882e38c53d40707a60b4f11414b9c8):
|
48 | 68 | ECMAScript specification complaint `f64` to string conversions. (@Tropid)
|
49 | 69 | - [FEATURE](https://github.com/boa-dev/ryu-js/commit/fe366fa397d04324fa693b5d85134851b09719b3):
|
50 | 70 | Change name from `ryu` to `ryu-js`. (@Tropid)
|
51 | 71 |
|
52 |
| -Bug fixes: |
| 72 | +### Bug Fixes |
53 | 73 |
|
54 | 74 | - [BUG #1](https://github.com/boa-dev/ryu-js/pull/1):
|
55 | 75 | Fixed buffer overflow with length greater than 24 (max is 25). (@HalidOdat)
|
56 | 76 |
|
57 |
| -Internal improvements: |
| 77 | +### Internal Improvements |
58 | 78 |
|
59 | 79 | - [INTERNAL #1](https://github.com/boa-dev/ryu-js/pull/2):
|
60 | 80 | Fixed all clippy warnings/errors and tests (@HalidOdat)
|
0 commit comments