Skip to content

Commit

Permalink
Updated versioning for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Jan 28, 2020
1 parent 4e97cac commit 147d0e0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
name = "lexical"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "5.1.0"
version = "5.2.0"
exclude = [
"data/*",
"benches/*",
Expand All @@ -23,7 +23,7 @@ travis-ci = { repository = "Alexhuszagh/rust-lexical" }

[dependencies]
cfg-if = "0.1"
lexical-core = { path = "lexical-core", version = "^0.7.1", default-features = false }
lexical-core = { path = "lexical-core", version = "^0.7.4", default-features = false }
# The following are only required for comprehensive float unittests.
# IE, internal testing only:
rand = { version = "0.4", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions lexical-capi/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.7.4] 2020-01-27
### Changed
- Changed number_format to use 64-bit flags, which required changing enum in the C-API to macros.
- Added `no_integer_leading_zeros` and `no_float_leading_zeros` number_format flags.
Expand Down
4 changes: 2 additions & 2 deletions lexical-capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "lexical-capi"
publish = false
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-capi"
version = "0.7.3"
version = "0.7.4"

[lib]
crate-type = ["cdylib", "staticlib"]
Expand All @@ -21,7 +21,7 @@ crate-type = ["cdylib", "staticlib"]
travis-ci = { repository = "Alexhuszagh/rust-lexical" }

[dependencies]
lexical-core = { path = "../lexical-core", version = "^0.7.3", default-features = false }
lexical-core = { path = "../lexical-core", version = "^0.7.4", default-features = false }

[features]
default = ["correct", "ryu", "std"]
Expand Down
2 changes: 2 additions & 0 deletions lexical-core/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.7.4] 2020-01-27
### Changed
- Changed NumberFormat to use 64-bit flags.
- Added `NO_INTEGER_LEADING_ZEROS` and `NO_FLOAT_LEADING_ZEROS` NumberFormat flags.
Expand Down
2 changes: 1 addition & 1 deletion lexical-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
name = "lexical-core"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core"
version = "0.7.3"
version = "0.7.4"
build = "build.rs"
exclude = [
"fuzz/*",
Expand Down

0 comments on commit 147d0e0

Please sign in to comment.