Skip to content

Commit 86dd622

Browse files
committed
Increment versions for release.
1 parent 823325d commit 86dd622

File tree

9 files changed

+23
-21
lines changed

9 files changed

+23
-21
lines changed

CHANGELOG

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.8.4] 2022-05-18
10+
## [0.8.5] 2022-05-18
1111
### Changed
1212
- Fixed numeric overflow bug causing panic (should explicitly wrap) in dragonbox algorithm's `umul192_lower128`.
1313

14+
## [0.8.4] 2022-03-15
15+
- Updated the dragonbox algorithm to implement the new changes to decrease code size.
16+
1417
## [0.8.3] 2022-03-10
1518
### Added
1619
- Added support for `-Zmiri-tag-raw-pointers` in miri correctness checks.
1720
- Added the documented functions `format_error` and `format_is_valid` to determine if a format packed struct is valid, since the previous checks relied on undocumented behavior.
1821
- Added `from_radix` to `ParseFloatOptions` and `WriteFloatOptions`, to simplify creating the default options with a different radix.
19-
- Updated the dragonbox algorithm to implement the new changes to decrease code size.
2022

2123
### Changed
2224
- Fixed `no_std` in `lexical-parse-float` when default features are disabled.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ let (x, count): (i32, usize) = lexical_core::parse_partial(b"123 456")?;
9494

9595
```toml
9696
[dependencies.lexical-core]
97-
version = "0.8.4"
97+
version = "0.8.5"
9898
default-features = false
9999
# Can select only desired parsing/writing features.
100100
features = ["write-integers", "write-floats", "parse-integers", "parse-floats"]

lexical-core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-core"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",
@@ -18,30 +18,30 @@ exclude = [
1818
]
1919

2020
[dependencies.lexical-util]
21-
version = "0.8.4"
21+
version = "0.8.5"
2222
default-features = false
2323
path = "../lexical-util"
2424

2525
[dependencies.lexical-parse-integer]
26-
version = "0.8.4"
26+
version = "0.8.5"
2727
optional = true
2828
default-features = false
2929
path = "../lexical-parse-integer"
3030

3131
[dependencies.lexical-parse-float]
32-
version = "0.8.4"
32+
version = "0.8.5"
3333
optional = true
3434
default-features = false
3535
path = "../lexical-parse-float"
3636

3737
[dependencies.lexical-write-integer]
38-
version = "0.8.4"
38+
version = "0.8.5"
3939
optional = true
4040
default-features = false
4141
path = "../lexical-write-integer"
4242

4343
[dependencies.lexical-write-float]
44-
version = "0.8.4"
44+
version = "0.8.5"
4545
optional = true
4646
default-features = false
4747
path = "../lexical-write-float"

lexical-parse-float/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-parse-float"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",
@@ -18,13 +18,13 @@ exclude = [
1818
]
1919

2020
[dependencies.lexical-util]
21-
version = "0.8.4"
21+
version = "0.8.5"
2222
path = "../lexical-util"
2323
default-features = false
2424
features = ["parse-floats"]
2525

2626
[dependencies.lexical-parse-integer]
27-
version = "0.8.4"
27+
version = "0.8.5"
2828
path = "../lexical-parse-integer"
2929
default-features = false
3030
features = []

lexical-parse-integer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-parse-integer"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",
@@ -21,7 +21,7 @@ exclude = [
2121
static_assertions = "1"
2222

2323
[dependencies.lexical-util]
24-
version = "0.8.4"
24+
version = "0.8.5"
2525
path = "../lexical-util"
2626
default-features = false
2727
features = ["parse-integers"]

lexical-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-util"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",

lexical-write-float/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-write-float"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",
@@ -18,13 +18,13 @@ exclude = [
1818
]
1919

2020
[dependencies.lexical-util]
21-
version = "0.8.4"
21+
version = "0.8.5"
2222
path = "../lexical-util"
2323
default-features = false
2424
features = ["write-floats"]
2525

2626
[dependencies.lexical-write-integer]
27-
version = "0.8.4"
27+
version = "0.8.5"
2828
path = "../lexical-write-integer"
2929
default-features = false
3030
features = []

lexical-write-integer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "lexical-write-integer"
1010
readme = "README.md"
1111
repository = "https://github.com/Alexhuszagh/rust-lexical"
12-
version = "0.8.4"
12+
version = "0.8.5"
1313
exclude = [
1414
"assets/*",
1515
"docs/*",
@@ -21,7 +21,7 @@ exclude = [
2121
static_assertions = "1"
2222

2323
[dependencies.lexical-util]
24-
version = "0.8.4"
24+
version = "0.8.5"
2525
path = "../lexical-util"
2626
default-features = false
2727
features = ["write-integers"]

lexical/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exclude = [
1818
]
1919

2020
[dependencies.lexical-core]
21-
version = "0.8.4"
21+
version = "0.8.5"
2222
default-features = false
2323
path = "../lexical-core"
2424

0 commit comments

Comments
 (0)