From 147d0e0d9e6c95f8895c33a05ed5b1f135b0c74e Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Mon, 27 Jan 2020 21:36:20 -0600 Subject: [PATCH] Updated versioning for release. --- Cargo.toml | 4 ++-- lexical-capi/CHANGELOG | 2 ++ lexical-capi/Cargo.toml | 4 ++-- lexical-core/CHANGELOG | 2 ++ lexical-core/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0a5b814c..df0eb354 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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/*", @@ -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 } diff --git a/lexical-capi/CHANGELOG b/lexical-capi/CHANGELOG index 2aaf2a97..cf973e33 100644 --- a/lexical-capi/CHANGELOG +++ b/lexical-capi/CHANGELOG @@ -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. diff --git a/lexical-capi/Cargo.toml b/lexical-capi/Cargo.toml index c0b32d4f..afae7843 100644 --- a/lexical-capi/Cargo.toml +++ b/lexical-capi/Cargo.toml @@ -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"] @@ -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"] diff --git a/lexical-core/CHANGELOG b/lexical-core/CHANGELOG index 3ff7f303..393a501c 100644 --- a/lexical-core/CHANGELOG +++ b/lexical-core/CHANGELOG @@ -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. diff --git a/lexical-core/Cargo.toml b/lexical-core/Cargo.toml index 26a2901e..12cf0b81 100644 --- a/lexical-core/Cargo.toml +++ b/lexical-core/Cargo.toml @@ -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/*",