diff --git a/ELM_CHANGELOG.md b/ELM_CHANGELOG.md index daef04e..fcf6add 100644 --- a/ELM_CHANGELOG.md +++ b/ELM_CHANGELOG.md @@ -1,5 +1,11 @@ # Elm Changelog +## [21.0.0] + +- ColumnDefs now support a FilterType `DateFilter`, which makes AGGrid intrepret the column as having dates and offering date type specific filtering with date pickers etc. +- Fix: FilterStates as emitted by the `onFilterChanged` event are now encoded to handle all known cases from the AGGrid docs. + + ## [20.0.0] - Convert width from an `Int` to a `Float` type on the `ColumnSettings` and `ColumnState`. This fixes an issue where a column with a float width would fail the ColumnState decoder. diff --git a/elm.json b/elm.json index b71c25f..f754752 100644 --- a/elm.json +++ b/elm.json @@ -3,7 +3,7 @@ "name": "mercurymedia/elm-ag-grid", "summary": "AgGrid integration for Elm", "license": "MIT", - "version": "20.0.0", + "version": "21.0.0", "exposed-modules": [ "AgGrid.ContextMenu", "AgGrid.Expression",