Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep 13.1.0 #515

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
Loading