Skip to content

Commit ce2419d

Browse files
authored
Added CHANGELOG.md and version bump v0.2.0 (#9)
1 parent 33693cc commit ce2419d

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# CHANGELOG
2+
3+
# [# 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)
4+
5+
Feature enhancements:
6+
7+
- [FEATURE #6](https://github.com/boa-dev/ryu-js/pull/6):
8+
ECMAScript specification complaint `f32` to string conversions. (@HalidOdat)
9+
10+
Bug fixes:
11+
12+
- [BUG #2](https://github.com/boa-dev/ryu-js/pull/2) (@HalidOdat):
13+
- Fixed compatibility with rust `1.31.0`.
14+
- Fixed converting from `-0.0` to `0`.
15+
- Fixed max length docs for `format32` and `format64`.
16+
17+
Internal improvements:
18+
19+
- [INTERNAL #2](https://github.com/boa-dev/ryu-js/pull/2):
20+
Optimized `0` and `-0` to string conversion (@HalidOdat)
21+
22+
# 0.1.0 (2020-07-13) - ECMAScript compliant `f64` conversions Release
23+
24+
This is the initial release of this crate, it introduces ECMAScript compliant `f64` to string conversions.
25+
26+
Feature enhancements:
27+
28+
- [FEATURE](https://github.com/boa-dev/ryu-js/commit/ed781f5772882e38c53d40707a60b4f11414b9c8):
29+
ECMAScript specification complaint `f64` to string conversions. (@Tropid)
30+
- [FEATURE](https://github.com/boa-dev/ryu-js/commit/fe366fa397d04324fa693b5d85134851b09719b3):
31+
Change name from `ryu` to `ryu-js`. (@Tropid)
32+
33+
Bug fixes:
34+
35+
- [BUG #1](https://github.com/boa-dev/ryu-js/pull/1):
36+
Fixed buffer overflow with length greater than 24 (max is 25). (@HalidOdat)
37+
38+
Internal improvements:
39+
40+
- [INTERNAL #1](https://github.com/boa-dev/ryu-js/pull/2):
41+
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.1.0" # don't forget to update html_root_url
3+
version = "0.2.0" # don't forget to update html_root_url
44
authors = ["David Tolnay <[email protected]>", "boa-dev"]
55
license = "Apache-2.0 OR BSL-1.0"
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
@@ -65,7 +65,7 @@
6565
//! notation.
6666
6767
#![no_std]
68-
#![doc(html_root_url = "https://docs.rs/ryu-js/0.1.0")]
68+
#![doc(html_root_url = "https://docs.rs/ryu-js/0.2.0")]
6969
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
7070
#![cfg_attr(
7171
feature = "cargo-clippy",

0 commit comments

Comments
 (0)