Skip to content

Commit

Permalink
[main] - Bump minimum versions because Xcode 15.3 introduced availabi…
Browse files Browse the repository at this point in the history
…lity into XCTest APIs - TT
  • Loading branch information
Tyler-Keith-Thompson committed Mar 15, 2024
1 parent 5226892 commit a6f7f5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CucumberSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CucumberSwift'
s.version = '4.3.2'
s.version = '5.0.0'
s.summary = 'A lightweight swift only cucumber implementation.'

s.description = <<-DESC
Expand All @@ -12,9 +12,9 @@ Pod::Spec.new do |s|
s.author = { 'Tyler Thompson' => '[email protected]' }
s.source = { :git => 'https://github.com/Tyler-Keith-Thompson/CucumberSwift.git', :tag => s.version.to_s }

s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.4'

s.source_files = 'Sources/**/*.{swift,h,m}'
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "CucumberSwift",
platforms: [.iOS(.v10), .macOS(.v10_12), .tvOS(.v10)],
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand Down

0 comments on commit a6f7f5c

Please sign in to comment.