From fbb4c17aa69680f5c079e69e91799613c91ddea8 Mon Sep 17 00:00:00 2001 From: Cesar Date: Tue, 25 Jul 2023 23:38:41 +0200 Subject: [PATCH] chore: update target versions --- .github/workflows/ci.yml | 6 +++--- Gemfile.lock | 1 + MessagePacker.podspec | 8 ++++---- Package.swift | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c087060..5e2c2ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,10 @@ on: jobs: xcode: - runs-on: macos-10.15 + runs-on: macos-latest strategy: matrix: - xcode: [10.3, 11.6] + xcode: [10.3, 11.6, 14.2] fail-fast: false name: Xcode ${{ matrix.xcode }} env: @@ -26,7 +26,7 @@ jobs: xcodebuild build -scheme "MessagePacker" -destination "name=Apple Watch Series 4 - 44mm" -configuration Release ENABLE_TESTABILITY=YES | xcpretty swiftpm: - runs-on: macos-10.15 + runs-on: macos-latest name: SwiftPM env: DEVELOPER_DIR: "/Applications/Xcode_11.6.app" diff --git a/Gemfile.lock b/Gemfile.lock index 748378c..050b26a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -89,6 +89,7 @@ GEM PLATFORMS x86_64-darwin-20 + x86_64-darwin-22 x86_64-linux DEPENDENCIES diff --git a/MessagePacker.podspec b/MessagePacker.podspec index 52576f8..bf76a48 100644 --- a/MessagePacker.podspec +++ b/MessagePacker.podspec @@ -13,10 +13,10 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/hirotakan/MessagePacker" s.license = { :type => "MIT", :file => "LICENSE" } s.author = "hirotakan" - s.ios.deployment_target = "8.0" - s.osx.deployment_target = "10.10" - s.watchos.deployment_target = "2.0" - s.tvos.deployment_target = "9.0" + s.ios.deployment_target = "11.0" + s.osx.deployment_target = "13.0" + s.watchos.deployment_target = "9.0" + s.tvos.deployment_target = "16.0" s.swift_version = "5.0" s.source = { :git => "https://github.com/hirotakan/MessagePacker.git", :tag => "#{s.version}" } diff --git a/Package.swift b/Package.swift index 7dc9628..dc76814 100644 --- a/Package.swift +++ b/Package.swift @@ -1,10 +1,10 @@ -// swift-tools-version:5.0 +// swift-tools-version:5.7 import PackageDescription let package = Package( name: "MessagePacker", platforms: [ - .macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2) + .macOS(.v13), .iOS(.v11), .tvOS(.v16), .watchOS(.v9) ], products: [ .library(name: "MessagePacker", targets: ["MessagePacker"]),