From bfbb947cf5c9fd446aa5ae2f6f0114ebb863a104 Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Thu, 10 Mar 2022 11:48:58 -0600 Subject: [PATCH] Update versions and CHANGELOG for release. --- CHANGELOG | 2 ++ README.md | 2 +- lexical-core/Cargo.toml | 12 ++++++------ lexical-parse-float/Cargo.toml | 6 +++--- lexical-parse-integer/Cargo.toml | 4 ++-- lexical-util/Cargo.toml | 2 +- lexical-write-float/Cargo.toml | 6 +++--- lexical-write-integer/Cargo.toml | 4 ++-- lexical/Cargo.toml | 4 ++-- 9 files changed, 22 insertions(+), 20 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index efb4ed31..c42b4dd9 100644 --- a/CHANGELOG +++ b/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.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. diff --git a/README.md b/README.md index ddd64471..8c74c718 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ let (x, count): (i32, usize) = lexical_core::parse_partial(b"123 456")?; ```toml [dependencies.lexical-core] -version = "0.8" +version = "0.8.3" default-features = false # Can select only desired parsing/writing features. features = ["write-integers", "write-floats", "parse-integers", "parse-floats"] diff --git a/lexical-core/Cargo.toml b/lexical-core/Cargo.toml index 98f17cda..5cb30e2e 100644 --- a/lexical-core/Cargo.toml +++ b/lexical-core/Cargo.toml @@ -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.2" +version = "0.8.3" exclude = [ "assets/*", "docs/*", @@ -18,30 +18,30 @@ exclude = [ ] [dependencies.lexical-util] -version = "0.8" +version = "0.8.3" default-features = false path = "../lexical-util" [dependencies.lexical-parse-integer] -version = "0.8" +version = "0.8.3" optional = true default-features = false path = "../lexical-parse-integer" [dependencies.lexical-parse-float] -version = "0.8" +version = "0.8.3" optional = true default-features = false path = "../lexical-parse-float" [dependencies.lexical-write-integer] -version = "0.8" +version = "0.8.3" optional = true default-features = false path = "../lexical-write-integer" [dependencies.lexical-write-float] -version = "0.8" +version = "0.8.3" optional = true default-features = false path = "../lexical-write-float" diff --git a/lexical-parse-float/Cargo.toml b/lexical-parse-float/Cargo.toml index 62b0ea31..055ed34b 100644 --- a/lexical-parse-float/Cargo.toml +++ b/lexical-parse-float/Cargo.toml @@ -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.2" +version = "0.8.3" exclude = [ "assets/*", "docs/*", @@ -18,13 +18,13 @@ exclude = [ ] [dependencies.lexical-util] -version = "0.8" +version = "0.8.3" path = "../lexical-util" default-features = false features = ["parse-floats"] [dependencies.lexical-parse-integer] -version = "0.8" +version = "0.8.3" path = "../lexical-parse-integer" default-features = false features = [] diff --git a/lexical-parse-integer/Cargo.toml b/lexical-parse-integer/Cargo.toml index ba31d724..65fb5016 100644 --- a/lexical-parse-integer/Cargo.toml +++ b/lexical-parse-integer/Cargo.toml @@ -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.0" +version = "0.8.3" exclude = [ "assets/*", "docs/*", @@ -21,7 +21,7 @@ exclude = [ static_assertions = "1" [dependencies.lexical-util] -version = "0.8" +version = "0.8.3" path = "../lexical-util" default-features = false features = ["parse-integers"] diff --git a/lexical-util/Cargo.toml b/lexical-util/Cargo.toml index 3f1901be..97ab9cf3 100644 --- a/lexical-util/Cargo.toml +++ b/lexical-util/Cargo.toml @@ -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.1" +version = "0.8.3" exclude = [ "assets/*", "docs/*", diff --git a/lexical-write-float/Cargo.toml b/lexical-write-float/Cargo.toml index 0c337d79..7fb26cb9 100644 --- a/lexical-write-float/Cargo.toml +++ b/lexical-write-float/Cargo.toml @@ -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.2" +version = "0.8.3" exclude = [ "assets/*", "docs/*", @@ -18,13 +18,13 @@ exclude = [ ] [dependencies.lexical-util] -version = "0.8" +version = "0.8.3" path = "../lexical-util" default-features = false features = ["write-floats"] [dependencies.lexical-write-integer] -version = "0.8" +version = "0.8.3" path = "../lexical-write-integer" default-features = false features = [] diff --git a/lexical-write-integer/Cargo.toml b/lexical-write-integer/Cargo.toml index 83cc5ef9..b55b524f 100644 --- a/lexical-write-integer/Cargo.toml +++ b/lexical-write-integer/Cargo.toml @@ -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.0" +version = "0.8.3" exclude = [ "assets/*", "docs/*", @@ -21,7 +21,7 @@ exclude = [ static_assertions = "1" [dependencies.lexical-util] -version = "0.8" +version = "0.8.3" path = "../lexical-util" default-features = false features = ["write-integers"] diff --git a/lexical/Cargo.toml b/lexical/Cargo.toml index 4b977b8c..ac1e3361 100644 --- a/lexical/Cargo.toml +++ b/lexical/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0" name = "lexical" readme = "README.md" repository = "https://github.com/Alexhuszagh/rust-lexical" -version = "6.0.1" +version = "6.1.0" exclude = [ "assets/*", "docs/*", @@ -18,7 +18,7 @@ exclude = [ ] [dependencies.lexical-core] -version = "0.8" +version = "0.8.3" default-features = false path = "../lexical-core"