Skip to content

Commit

Permalink
release: Prepare 14.5.0 release (#551)
Browse files Browse the repository at this point in the history
- **Bumping versions to 14.5.0.**
- **Updated documentation**

### Checklist

Please do the following before merging:

- [x] Ensure any public-facing changes are reflected in the
[changelog](https://github.com/kyleve/Listable/blob/main/CHANGELOG.md).
Include them in the `Main` section.

### Post merge

```
Once the PR is merged, fetch changes and tag the release, using the merge commit:

git fetch
git tag 14.5.0 <merge commit SHA>
git push origin 14.5.0

Publish to CocoaPods

Note: You may also need to quit Xcode before running these commands in order for the linting builds to succeed.

LISTABLE_PUBLISHING=true bundle exec pod trunk push ListableUI.podspec
# The --synchronous argument ensures this command builds against the
# version of ListableUI that we just published.
LISTABLE_PUBLISHING=true bundle exec pod trunk push BlueprintUILists.podspec --synchronous
```
  • Loading branch information
robmaceachern authored Dec 19, 2024
1 parent bdcb63b commit f457c6b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

### Added

- Added `CacheCleaner` which exposes a method to force Listable's static caches to be cleared.

### Removed

### Changed
Expand All @@ -16,6 +14,12 @@

# Past Releases

# [14.5.0] - 2024-12-18

### Added

- Added `CacheCleaner` which exposes a method to force Listable's static caches to be cleared.

# [14.4.1] - 2024-10-31

### Changed
Expand Down Expand Up @@ -1073,8 +1077,9 @@ 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.4.1...main
[14.4.0]: https://github.com/square/Listable/compare/14.4.0...14.4.1
[Main]: https://github.com/square/Listable/compare/14.5.0...main
[14.5.0]: https://github.com/square/Listable/compare/14.4.1...14.5.0
[14.4.1]: https://github.com/square/Listable/compare/14.4.0...14.4.1
[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
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 (5.0.0)
- BlueprintUICommonControls (5.0.0):
- BlueprintUI (= 5.0.0)
- BlueprintUILists (14.4.1):
- BlueprintUILists (14.5.0):
- BlueprintUI (~> 5.0)
- ListableUI
- BlueprintUILists/Tests (14.4.1):
- BlueprintUILists/Tests (14.5.0):
- BlueprintUI (~> 5.0)
- BlueprintUICommonControls (~> 5.0)
- ListableUI
- EnglishDictionary (1.0.0.LOCAL)
- ListableUI (14.4.1)
- ListableUI/Tests (14.4.1):
- ListableUI (14.5.0)
- ListableUI/Tests (14.5.0):
- EnglishDictionary
- Snapshot
- Snapshot (1.0.0.LOCAL)
Expand Down Expand Up @@ -46,9 +46,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
BlueprintUI: 0e2d2944bca6c0d6d96df711a43bce01154bb7ef
BlueprintUICommonControls: 8f400ee3ecf2bc58bd21cce29caba9f7c83d22b8
BlueprintUILists: 63f017beded0523d421ad50e1df067d9ec926f1f
BlueprintUILists: 4117df302af98c741a418b56a283d0c7789ab102
EnglishDictionary: 2cf40d33cc1b68c4152a1cc69561aaf6e4ba0209
ListableUI: 1badb93ce08e58e6e3c21950a5e390e6b8f95aa7
ListableUI: 3f5bc50d23beb8386958d4c9729f5bd2fb6b4b68
Snapshot: 574e65b08c02491a541efbd2619c92cc26514d1c

PODFILE CHECKSUM: 2b979d4f2436d28af7c87b125b646836119b89b7
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 ||= ['~> 5.0'].freeze

LISTABLE_VERSION ||= '14.4.1'
LISTABLE_VERSION ||= '14.5.0'

LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'

Expand Down

0 comments on commit f457c6b

Please sign in to comment.