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

Bumping blueprint dependency and publishing 14.4.1 #547

Merged
merged 3 commits into from
Oct 31, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/env.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
xcode_version=15.1
xcode_version=15.4
8 changes: 4 additions & 4 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
spm:
name: Swift Package Manager

runs-on: macos-13-xlarge
runs-on: macos-14-xlarge

steps:
- name: Switch To Xcode 15.1
run: sudo xcode-select -switch /Applications/Xcode_15.1.app
- name: Switch To Xcode 15.4
run: sudo xcode-select -switch /Applications/Xcode_15.4.app

- name: Checkout repository
uses: actions/checkout@v1
Expand All @@ -28,7 +28,7 @@ jobs:
test:
name: "iOS ${{ matrix.sdk }}"

runs-on: macos-13-xlarge
runs-on: macos-14-xlarge

strategy:
matrix:
Expand Down
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,22 @@

### Changed

- `animatesChanges` now always defaults to `true`.

### Misc

### Internal

# Past Releases

# [14.4.1] - 2024-10-31

### Changed

- `animatesChanges` now always defaults to `true`.

### Internal

- `BlueprintUILists` now depends on `BlueprintUI` 5.0.0.

# [14.4.0] - 2024-08-27

### Added
Expand Down Expand Up @@ -1063,7 +1071,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.4.0...main
[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
[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
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/square/Blueprint", from: "4.0.0"),
.package(url: "https://github.com/square/Blueprint", from: "5.0.0"),
],
targets: [
.target(
Expand Down
28 changes: 14 additions & 14 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
PODS:
- BlueprintUI (4.0.0)
- BlueprintUICommonControls (4.0.0):
- BlueprintUI (= 4.0.0)
- BlueprintUILists (14.4.0):
- BlueprintUI (~> 4.0)
- BlueprintUI (5.0.0)
- BlueprintUICommonControls (5.0.0):
- BlueprintUI (= 5.0.0)
- BlueprintUILists (14.4.1):
- BlueprintUI (~> 5.0)
- ListableUI
- BlueprintUILists/Tests (14.4.0):
- BlueprintUI (~> 4.0)
- BlueprintUICommonControls (~> 4.0)
- BlueprintUILists/Tests (14.4.1):
- BlueprintUI (~> 5.0)
- BlueprintUICommonControls (~> 5.0)
- ListableUI
- EnglishDictionary (1.0.0.LOCAL)
- ListableUI (14.4.0)
- ListableUI/Tests (14.4.0):
- ListableUI (14.4.1)
- ListableUI/Tests (14.4.1):
- EnglishDictionary
- Snapshot
- Snapshot (1.0.0.LOCAL)
Expand Down Expand Up @@ -44,11 +44,11 @@ EXTERNAL SOURCES:
:path: Internal Pods/Snapshot/Snapshot.podspec

SPEC CHECKSUMS:
BlueprintUI: 1818f187a6be6c69266a4e30f03a6ad7755530e9
BlueprintUICommonControls: 6ceffc16822dea3d1910029aa87eed7a386e4e3b
BlueprintUILists: 799f21a75c76968f84ab768dcba0950ff53e23f8
BlueprintUI: 0e2d2944bca6c0d6d96df711a43bce01154bb7ef
BlueprintUICommonControls: 8f400ee3ecf2bc58bd21cce29caba9f7c83d22b8
BlueprintUILists: 63f017beded0523d421ad50e1df067d9ec926f1f
EnglishDictionary: 2cf40d33cc1b68c4152a1cc69561aaf6e4ba0209
ListableUI: 04974e3cc04a2df7f93242b489431ea86e69329b
ListableUI: 1badb93ce08e58e6e3c21950a5e390e6b8f95aa7
Snapshot: 574e65b08c02491a541efbd2619c92cc26514d1c

PODFILE CHECKSUM: 2b979d4f2436d28af7c87b125b646836119b89b7
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

BLUEPRINT_VERSION ||= ['~> 4.0'].freeze
BLUEPRINT_VERSION ||= ['~> 5.0'].freeze

LISTABLE_VERSION ||= '14.4.0'
LISTABLE_VERSION ||= '14.4.1'

LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'

Expand Down
Loading