From 12a3fc91ba8619c13acef9d5021362e5d59cba50 Mon Sep 17 00:00:00 2001 From: Petr Nymsa Date: Wed, 23 Oct 2024 11:22:14 +0200 Subject: [PATCH] Update changelog --- glade_forms/CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/glade_forms/CHANGELOG.md b/glade_forms/CHANGELOG.md index 13df862..b6ba021 100644 --- a/glade_forms/CHANGELOG.md +++ b/glade_forms/CHANGELOG.md @@ -1,14 +1,16 @@ ## 3.0.0 -- Breaking release +**Breaking release** -## 2.3.0: - **[Add]**: Add `allowBlank` parameter to `isEmpty` string validator. - **[Add]**: Add `IntInput` as a specialized variant of GladeInput which has additional, int related, validations such as `isBetween`, `isMin`, `isMax` - **[Add]**: Support skipping particular validation with `shouldValidate` callback. - **[Breaking]**: The `resetToPure` method on both GladeInput and GladeModel has been renamed to `setAsNewPure`. This change better reflects the method's behavior of setting a new pure state rather than resetting to the original state. - **[Add]**: New `resetToPure` method added to both GladeInput and GladeModel. This method truly resets the input(s) to their initial value(s) and marks them as pure. +## 2.3.0 +- RETRACTED version, should be 3.0.0 + ## 2.2.0 - **[Add]**: Add `resetToPure` on model level.