From c21bcbc8c0d754d23a61a6a2e70b85459b37cc78 Mon Sep 17 00:00:00 2001 From: Kyle Van Essen Date: Tue, 27 Aug 2024 17:43:45 -0700 Subject: [PATCH] Prep 14.4.0 --- CHANGELOG.md | 17 ++++++++++++----- Podfile.lock | 12 ++++++------ version.rb | 2 +- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1ddd4e..44ad8987 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,8 @@ ### Added -- Added new `isScrollEnabled` property to `Behavior` to disable scrolling on a list if needed. - ### Removed -- Revert: Fixed an issue where animations would occur when dequeuing / reusing cells. A layout is now forced without animation before presentation. - ### Changed ### Misc @@ -18,6 +14,16 @@ # Past Releases +# [14.4.0] - 2024-08-27 + +### Added + +- Added new `isScrollEnabled` property to `Behavior` to disable scrolling on a list if needed. + +### Removed + +- Revert: Fixed an issue where animations would occur when dequeuing / reusing cells. A layout is now forced without animation before presentation. + # [14.3.1] - 2024-08-08 ### Fixed @@ -1055,7 +1061,8 @@ listActions.scrolling.scrollToSection( Earlier releases were ad-hoc and not tracked. To see all changes, please reference [closed PRs on Github](https://github.com/kyleve/Listable/pulls?q=is%3Apr+is%3Aclosed). -[Main]: https://github.com/square/Listable/compare/14.3.1...main +[Main]: https://github.com/square/Listable/compare/14.4.0...main +[14.4.0]: https://github.com/square/Listable/compare/14.3.1...14.4.0 [14.3.1]: https://github.com/square/Listable/compare/14.3.0...14.3.1 [14.3.0]: https://github.com/square/Listable/compare/14.2.0...14.3.0 [14.2.0]: https://github.com/square/Listable/compare/14.1.0...14.2.0 diff --git a/Podfile.lock b/Podfile.lock index 92c38e37..ca33e8d1 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -2,16 +2,16 @@ PODS: - BlueprintUI (4.0.0) - BlueprintUICommonControls (4.0.0): - BlueprintUI (= 4.0.0) - - BlueprintUILists (14.3.1): + - BlueprintUILists (14.4.0): - BlueprintUI (~> 4.0) - ListableUI - - BlueprintUILists/Tests (14.3.1): + - BlueprintUILists/Tests (14.4.0): - BlueprintUI (~> 4.0) - BlueprintUICommonControls (~> 4.0) - ListableUI - EnglishDictionary (1.0.0.LOCAL) - - ListableUI (14.3.1) - - ListableUI/Tests (14.3.1): + - ListableUI (14.4.0) + - ListableUI/Tests (14.4.0): - EnglishDictionary - Snapshot - Snapshot (1.0.0.LOCAL) @@ -46,9 +46,9 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: BlueprintUI: 1818f187a6be6c69266a4e30f03a6ad7755530e9 BlueprintUICommonControls: 6ceffc16822dea3d1910029aa87eed7a386e4e3b - BlueprintUILists: 1f92f30a9971ce2d6b0442bbc698ac1776436996 + BlueprintUILists: 799f21a75c76968f84ab768dcba0950ff53e23f8 EnglishDictionary: 2cf40d33cc1b68c4152a1cc69561aaf6e4ba0209 - ListableUI: afeac8ace490d931bbae35cfaf1bf6354bb02b03 + ListableUI: 04974e3cc04a2df7f93242b489431ea86e69329b Snapshot: 574e65b08c02491a541efbd2619c92cc26514d1c PODFILE CHECKSUM: 2b979d4f2436d28af7c87b125b646836119b89b7 diff --git a/version.rb b/version.rb index 2ef82ec2..0ad5fbf1 100644 --- a/version.rb +++ b/version.rb @@ -2,7 +2,7 @@ BLUEPRINT_VERSION ||= ['~> 4.0'].freeze -LISTABLE_VERSION ||= '14.3.1' +LISTABLE_VERSION ||= '14.4.0' LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'