Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephTLyons committed Dec 7, 2024
1 parent 4515405 commit 42d4c40
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog

## v1.3.6 - 2024-12-XX
## v2.0.0 - 2024-12-07

- Handle values too large for JavaScript runtime
- TODO: New error(s) introduced
- Handled values that exceed either the `Number.MIN_SAFE_INTEGER` and `Number.MAX_SAFE_INTEGER` limits on the JavaScript target.
- Handled values that cannot fit within the float type, on both Erlang and JavaScript targets.

This is a breaking change, as we introduced new errors to `ParseError`, which will affect users who are matching on the `ParseError` type.
- `OutOfIntRange`
- `OutOfFloatRange`

## v1.3.5 - 2024-11-20

Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "lenient_parse"
version = "1.3.5"
version = "2.0.0"

description = "Lenient parsing functions for Gleam, modeled after Python's `int()` and `float()` built-ins."
licences = ["Apache-2.0"]
Expand Down

0 comments on commit 42d4c40

Please sign in to comment.