Skip to content

Commit

Permalink
Increment versions for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed May 18, 2022
1 parent 823325d commit 86dd622
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 21 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

## [0.8.4] 2022-03-15
- Updated the dragonbox algorithm to implement the new changes to decrease code size.

## [0.8.3] 2022-03-10
### Added
- Added support for `-Zmiri-tag-raw-pointers` in miri correctness checks.
- 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.
- Added `from_radix` to `ParseFloatOptions` and `WriteFloatOptions`, to simplify creating the default options with a different radix.
- Updated the dragonbox algorithm to implement the new changes to decrease code size.

### Changed
- Fixed `no_std` in `lexical-parse-float` when default features are disabled.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ let (x, count): (i32, usize) = lexical_core::parse_partial(b"123 456")?;

```toml
[dependencies.lexical-core]
version = "0.8.4"
version = "0.8.5"
default-features = false
# Can select only desired parsing/writing features.
features = ["write-integers", "write-floats", "parse-integers", "parse-floats"]
Expand Down
12 changes: 6 additions & 6 deletions lexical-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-core"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand All @@ -18,30 +18,30 @@ exclude = [
]

[dependencies.lexical-util]
version = "0.8.4"
version = "0.8.5"
default-features = false
path = "../lexical-util"

[dependencies.lexical-parse-integer]
version = "0.8.4"
version = "0.8.5"
optional = true
default-features = false
path = "../lexical-parse-integer"

[dependencies.lexical-parse-float]
version = "0.8.4"
version = "0.8.5"
optional = true
default-features = false
path = "../lexical-parse-float"

[dependencies.lexical-write-integer]
version = "0.8.4"
version = "0.8.5"
optional = true
default-features = false
path = "../lexical-write-integer"

[dependencies.lexical-write-float]
version = "0.8.4"
version = "0.8.5"
optional = true
default-features = false
path = "../lexical-write-float"
Expand Down
6 changes: 3 additions & 3 deletions lexical-parse-float/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-parse-float"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand All @@ -18,13 +18,13 @@ exclude = [
]

[dependencies.lexical-util]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-util"
default-features = false
features = ["parse-floats"]

[dependencies.lexical-parse-integer]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-parse-integer"
default-features = false
features = []
Expand Down
4 changes: 2 additions & 2 deletions lexical-parse-integer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-parse-integer"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand All @@ -21,7 +21,7 @@ exclude = [
static_assertions = "1"

[dependencies.lexical-util]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-util"
default-features = false
features = ["parse-integers"]
Expand Down
2 changes: 1 addition & 1 deletion lexical-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-util"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand Down
6 changes: 3 additions & 3 deletions lexical-write-float/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-write-float"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand All @@ -18,13 +18,13 @@ exclude = [
]

[dependencies.lexical-util]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-util"
default-features = false
features = ["write-floats"]

[dependencies.lexical-write-integer]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-write-integer"
default-features = false
features = []
Expand Down
4 changes: 2 additions & 2 deletions lexical-write-integer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-write-integer"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "0.8.4"
version = "0.8.5"
exclude = [
"assets/*",
"docs/*",
Expand All @@ -21,7 +21,7 @@ exclude = [
static_assertions = "1"

[dependencies.lexical-util]
version = "0.8.4"
version = "0.8.5"
path = "../lexical-util"
default-features = false
features = ["write-integers"]
Expand Down
2 changes: 1 addition & 1 deletion lexical/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exclude = [
]

[dependencies.lexical-core]
version = "0.8.4"
version = "0.8.5"
default-features = false
path = "../lexical-core"

Expand Down

0 comments on commit 86dd622

Please sign in to comment.