diff --git a/CHANGELOG.md b/CHANGELOG.md index e3f964d..f4bb674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.3.2 - 2024-11-15 + +- Fixed precision errors in some float representations by removing the need to add together the integer and fractional parts of a float. + ## v1.3.1 - 2024-11-11 - Fixed a bug where an underscore was not allowed in between a base prefix string and the number: `0x_DEAD_BEEF` should parse. diff --git a/gleam.toml b/gleam.toml index 7114b4f..4014b4f 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,5 +1,5 @@ name = "lenient_parse" -version = "1.3.1" +version = "1.3.2" description = "Lenient parsing functions for Gleam, modeled after Python's `int()` and `float()` built-ins." licences = ["Apache-2.0"]