Skip to content

Commit dff195b

Browse files
committed
CHANGELOG.md update and version bump v1.0.0
1 parent fddd72d commit dff195b

File tree

3 files changed

+35
-15
lines changed

3 files changed

+35
-15
lines changed

CHANGELOG.md

Lines changed: 33 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,80 @@
11
# CHANGELOG
22

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()`
44

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
626

727
- [INTERNAL #17](https://github.com/boa-dev/ryu-js/pull/17) Sync to `dtolnay/ryu` master
828
- [INTERNAL #16](https://github.com/boa-dev/ryu-js/pull/16) Sync to `dtolnay/ryu` master
929

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)
1131

12-
Feature enhancements:
32+
### Feature Enhancements
1333

1434
- [FEATURE #11](https://github.com/boa-dev/ryu-js/pull/11):
1535
Null check in unsafe `format32` and `format64` (in debug mode). (@HalidOdat)
1636

17-
Bug fixes:
37+
### Bug Fixes
1838

1939
- BUG [#12](https://github.com/boa-dev/ryu-js/pull/12) [#13](https://github.com/boa-dev/ryu-js/pull/13):
2040
Documentation fixes (@HalidOdat)
2141

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)
2343

24-
Feature enhancements:
44+
### Feature Enhancements
2545

2646
- [FEATURE #6](https://github.com/boa-dev/ryu-js/pull/6):
2747
ECMAScript specification complaint `f32` to string conversions. (@HalidOdat)
2848

29-
Bug fixes:
49+
### Bug Fixes
3050

3151
- [BUG #2](https://github.com/boa-dev/ryu-js/pull/2) (@HalidOdat):
3252
- Fixed compatibility with rust `1.31.0`.
3353
- Fixed converting from `-0.0` to `0`.
3454
- Fixed max length docs for `format32` and `format64`.
3555

36-
Internal improvements:
56+
### Internal Improvements
3757

3858
- [INTERNAL #2](https://github.com/boa-dev/ryu-js/pull/2):
3959
Optimized `0` and `-0` to string conversion (@HalidOdat)
4060

41-
# 0.1.0 (2020-07-13) - ECMAScript compliant `f64` conversions Release
61+
# # 0.1.0 (2020-07-13) - ECMAScript compliant `f64` conversions Release
4262

4363
This is the initial release of this crate, it introduces ECMAScript compliant `f64` to string conversions.
4464

45-
Feature enhancements:
65+
### Feature Enhancements
4666

4767
- [FEATURE](https://github.com/boa-dev/ryu-js/commit/ed781f5772882e38c53d40707a60b4f11414b9c8):
4868
ECMAScript specification complaint `f64` to string conversions. (@Tropid)
4969
- [FEATURE](https://github.com/boa-dev/ryu-js/commit/fe366fa397d04324fa693b5d85134851b09719b3):
5070
Change name from `ryu` to `ryu-js`. (@Tropid)
5171

52-
Bug fixes:
72+
### Bug Fixes
5373

5474
- [BUG #1](https://github.com/boa-dev/ryu-js/pull/1):
5575
Fixed buffer overflow with length greater than 24 (max is 25). (@HalidOdat)
5676

57-
Internal improvements:
77+
### Internal Improvements
5878

5979
- [INTERNAL #1](https://github.com/boa-dev/ryu-js/pull/2):
6080
Fixed all clippy warnings/errors and tests (@HalidOdat)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ryu-js"
3-
version = "0.2.2" # don't forget to update html_root_url
3+
version = "1.0.0" # don't forget to update html_root_url
44
authors = ["David Tolnay <[email protected]>", "boa-dev"]
55
categories = ["value-formatting", "no-std"]
66
description = "Fast floating point to string conversion, ECMAScript compliant."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! notation.
5454
5555
#![no_std]
56-
#![doc(html_root_url = "https://docs.rs/ryu-js/0.2.2")]
56+
#![doc(html_root_url = "https://docs.rs/ryu-js/1.0.0")]
5757
#![allow(
5858
clippy::cast_lossless,
5959
clippy::cast_possible_truncation,

0 commit comments

Comments
 (0)