From bf516aba6ba0602e99189df7e84d6b69b71e60a8 Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Sat, 7 Dec 2024 15:40:54 -0500 Subject: [PATCH] Fix changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f456b3f..881ed7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,10 @@ ## v2.0.0 - 2024-12-07 -- Handled values that exceed either the `Number.MIN_SAFE_INTEGER` and `Number.MAX_SAFE_INTEGER` limits on the JavaScript target. +- Handled values that breach either the `Number.MIN_SAFE_INTEGER` or `Number.MAX_SAFE_INTEGER` limit 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. +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`