Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: square/Listable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 14.0.0
Choose a base ref
...
head repository: square/Listable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14.0.1
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Feb 21, 2024

  1. Fix SPM Blueprint dependency

    nsillik committed Feb 21, 2024
    Copy the full SHA
    ab11473 View commit details
  2. Merge pull request #526 from square/nsillik/fix-spm

    Fix SPM Blueprint dependency
    nsillik authored Feb 21, 2024
    Copy the full SHA
    a67a7b0 View commit details

Commits on Feb 22, 2024

  1. Bump to 14.0.1

    nsillik committed Feb 22, 2024
    Copy the full SHA
    d9cefa5 View commit details
  2. Merge pull request #527 from square/nsillik/release-14.0.1

    Bump to 14.0.1
    nsillik authored Feb 22, 2024
    Copy the full SHA
    f236c3d View commit details
Showing with 14 additions and 8 deletions.
  1. +6 −0 CHANGELOG.md
  2. +1 −1 Package.swift
  3. +6 −6 Podfile.lock
  4. +1 −1 version.rb
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -14,6 +14,12 @@

# Past Releases

# [14.0.1] - 2024-02-21

### Fixed

- Fix SPM dependency on listable

# [14.0.0] - 2024-02-21

### Fixed
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/square/Blueprint", from: "2.2.0"),
.package(url: "https://github.com/square/Blueprint", from: "3.0.0"),
],
targets: [
.target(
12 changes: 6 additions & 6 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@ PODS:
- BlueprintUI (3.0.0)
- BlueprintUICommonControls (3.0.0):
- BlueprintUI (= 3.0.0)
- BlueprintUILists (14.0.0):
- BlueprintUILists (14.0.1):
- BlueprintUI (~> 3.0)
- ListableUI
- BlueprintUILists/Tests (14.0.0):
- BlueprintUILists/Tests (14.0.1):
- BlueprintUI (~> 3.0)
- BlueprintUICommonControls (~> 3.0)
- ListableUI
- EnglishDictionary (1.0.0.LOCAL)
- ListableUI (14.0.0)
- ListableUI/Tests (14.0.0):
- ListableUI (14.0.1)
- ListableUI/Tests (14.0.1):
- EnglishDictionary
- Snapshot
- Snapshot (1.0.0.LOCAL)
@@ -46,9 +46,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
BlueprintUI: 76e054862aceb2b014a7953464c5769af55c13d5
BlueprintUICommonControls: 9219a0b82ea4b95bbeef44d3fbc65b9b01f1acba
BlueprintUILists: c5bf14f3a5a5811809440e3d906b46258626489f
BlueprintUILists: ce928995caa7535e0b7e0f194017eaec7e790549
EnglishDictionary: 2cf40d33cc1b68c4152a1cc69561aaf6e4ba0209
ListableUI: c1c7cfd1edaa4d58bca4223e56a821246222d089
ListableUI: a00150ed77c94cfa25efa617825fb67af3fb4f22
Snapshot: 574e65b08c02491a541efbd2619c92cc26514d1c

PODFILE CHECKSUM: 2b979d4f2436d28af7c87b125b646836119b89b7
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

BLUEPRINT_VERSION ||= ['~> 3.0'].freeze

LISTABLE_VERSION ||= '14.0.0'
LISTABLE_VERSION ||= '14.0.1'

LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'