diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bcf6bfe..22167a5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,6 @@ ### Fixed -- Fixed an issue where supplementary views (headers or footers) that contained a first responder would result in the view being duplicated when scrolled off-screen. -- Fixed an issue where a crash would occur when applying an external update to list content while a live reorder event was occurring. - ### Added ### Removed @@ -15,10 +12,17 @@ ### Internal -- Remove override of `performBatchUpdates` from our internal `UICollectionView` subclass, it causes warnings for consumers. - # Past Releases +# [13.1.0] - 2023-11-30 + +- Fixed an issue where supplementary views (headers or footers) that contained a first responder would result in the view being duplicated when scrolled off-screen. +- Fixed an issue where a crash would occur when applying an external update to list content while a live reorder event was occurring. + +### Internal + +- Remove override of `performBatchUpdates` from our internal `UICollectionView` subclass, it causes warnings for consumers. + # [13.0.0] - 2023-09-06 ### Fixed @@ -978,7 +982,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/13.0.0...main +[Main]: https://github.com/square/Listable/compare/13.1.0...main +[13.1.0]: https://github.com/square/Listable/square/13.0.0...13.1.0 [13.0.0]: https://github.com/square/Listable/square/12.0.0...13.0.0 [12.0.0]: https://github.com/square/Listable/compare/11.0.0...12.0.0 [11.0.0]: https://github.com/square/Listable/compare/10.3.1...11.0.0 diff --git a/Podfile.lock b/Podfile.lock index a460d550..d3001cd2 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -2,16 +2,16 @@ PODS: - BlueprintUI (2.0.0) - BlueprintUICommonControls (2.0.0): - BlueprintUI (= 2.0.0) - - BlueprintUILists (13.0.0): + - BlueprintUILists (13.1.0): - BlueprintUI (~> 2.0) - ListableUI - - BlueprintUILists/Tests (13.0.0): + - BlueprintUILists/Tests (13.1.0): - BlueprintUI (~> 2.0) - BlueprintUICommonControls (~> 2.0) - ListableUI - EnglishDictionary (1.0.0.LOCAL) - - ListableUI (13.0.0) - - ListableUI/Tests (13.0.0): + - ListableUI (13.1.0) + - ListableUI/Tests (13.1.0): - EnglishDictionary - Snapshot - Snapshot (1.0.0.LOCAL) @@ -46,9 +46,9 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: BlueprintUI: a1adeb91f76c88dd499ad693251aa96919b1c2a4 BlueprintUICommonControls: 9e02875bc6b8ef64aa9634c32d7156bd50c7b88d - BlueprintUILists: 2962f5944139e4e88b60f67e26c1555e1bdd61f5 + BlueprintUILists: 9d0c900033505aefa08b5941844f3ed47b9993af EnglishDictionary: 277ff15917abc170362afbd2ad11cbe15c2ae6ad - ListableUI: d510180c325505294d7da3d4bf7f56977f863dd8 + ListableUI: 8f2bfe37d83017d137ead278140de0393de7f588 Snapshot: a936e73ede9570c80fb55e20542903e81efbad82 PODFILE CHECKSUM: 2ca1d80570fc765312a79bcaa886ee9034caabd2 diff --git a/version.rb b/version.rb index 995fb36e..b10bc2a7 100644 --- a/version.rb +++ b/version.rb @@ -2,7 +2,7 @@ BLUEPRINT_VERSION ||= ['~> 2.0'].freeze -LISTABLE_VERSION ||= '13.0.0' +LISTABLE_VERSION ||= '13.1.0' LISTABLE_IOS_DEPLOYMENT_TARGET ||= '14.0'