From b6d0eb4478663ea830dafc94423dbaa487db37a8 Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Sat, 7 Dec 2024 12:53:51 -0600 Subject: [PATCH] Update writer versions. --- CHANGELOG | 2 ++ lexical-write-float/Cargo.toml | 2 +- lexical-write-integer/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 62b4bcd7..1420d0c8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.4] 2024-12-07 + ### Changed - Improved performance of integer and float formatting using the [jeaiii](https://jk-jeon.github.io/posts/2022/02/jeaiii-algorithm/) algorithm with additional optimizations to minimize branching (#163). This also improves memory safety guarantees, since no unsafe indexing is used when formatting integers. diff --git a/lexical-write-float/Cargo.toml b/lexical-write-float/Cargo.toml index 3c06dcf9..0b88768d 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 = "1.0.3" +version = "1.0.4" rust-version = "1.63.0" exclude = [ "assets/*", diff --git a/lexical-write-integer/Cargo.toml b/lexical-write-integer/Cargo.toml index 284153a3..57478417 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 = "1.0.3" +version = "1.0.4" rust-version = "1.63.0" exclude = [ "assets/*",