Skip to content

Commit

Permalink
Bump up versions for Xcode 15+
Browse files Browse the repository at this point in the history
  • Loading branch information
rgnns committed May 7, 2024
1 parent f856226 commit 64479cd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
platform: ['iOS Simulator,name=iPhone 8']
platform: ['iOS Simulator,name=iPhone SE (3rd generation)']
steps:
- uses: actions/checkout@v2
- name: Test
Expand Down Expand Up @@ -50,11 +50,11 @@ jobs:
- name: Verify that PINCache can be build by SPM
run: make spm
xcode-spm-integration:
name: Build iOS example project
name: Build iOS example project
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Check Xcode's spm integration
run: make example
run: make example
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PLATFORM="platform=iOS Simulator,name=iPhone 8"
PLATFORM="platform=iOS Simulator,name=iPhone SE (3rd generation)"
SDK="iphonesimulator"
SHELL=/bin/bash -o pipefail
XCODE_MAJOR_VERSION=$(shell xcodebuild -version | HEAD -n 1 | sed -E 's/Xcode ([0-9]+).*/\1/')
Expand Down
12 changes: 6 additions & 6 deletions PINCache.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PINCache'
s.version = '3.0.3'
s.version = '3.0.4'
s.homepage = 'https://github.com/pinterest/PINCache'
s.summary = 'Fast, thread safe, parallel object cache for iOS and OS X.'
s.authors = { 'Garrett Moon' => '[email protected]', 'Justin Ouellette' => '[email protected]' }
Expand All @@ -10,10 +10,10 @@ Pod::Spec.new do |s|
s.frameworks = 'Foundation'
s.ios.weak_frameworks = 'UIKit'
s.osx.weak_frameworks = 'AppKit'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
pch_PIN = <<-EOS
#ifndef TARGET_OS_WATCH
#define TARGET_OS_WATCH 0
Expand All @@ -22,7 +22,7 @@ EOS
s.prefix_header_contents = pch_PIN
s.subspec 'Core' do |sp|
sp.source_files = 'Source/*.{h,m}'
sp.dependency 'PINOperation', '~> 1.2.1'
sp.dependency 'PINOperation', '~> 1.2.3'
end
s.subspec 'Arc-exception-safe' do |sp|
sp.dependency 'PINCache/Core'
Expand Down

0 comments on commit 64479cd

Please sign in to comment.