From a19ce70341a132f22e1f6635fc4cdd76ffc9399b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=80=E1=85=B5=E1=86=B7=E1=84=8C=E1=85=B5=E1=86=AB?= =?UTF-8?q?=E1=84=80=E1=85=B2?= Date: Tue, 26 Apr 2022 20:33:59 +0900 Subject: [PATCH 1/3] Update Immutable.podspec # minimum iOS target to 9.0 # minimum iOS target to 9.0 --- Immutable.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Immutable.podspec b/Immutable.podspec index 5285d17..d376599 100644 --- a/Immutable.podspec +++ b/Immutable.podspec @@ -10,7 +10,7 @@ Pod::Spec.new do |s| s.source_files = "Sources/**/*.swift" s.swift_version = "5.0" - s.ios.deployment_target = '8.0' + s.ios.deployment_target = '9.0' s.osx.deployment_target = '10.11' s.tvos.deployment_target = '9.0' s.watchos.deployment_target = '2.0' From 6639dca18b1fcdc22f972ca65bce111c8d7a318d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=80=E1=85=B5=E1=86=B7=E1=84=8C=E1=85=B5=E1=86=AB?= =?UTF-8?q?=E1=84=80=E1=85=B2?= Date: Tue, 26 Apr 2022 20:35:21 +0900 Subject: [PATCH 2/3] Add Package@swift-5.3.swift # minimum iOS target to 9.0 --- Package@swift-5.3.swift | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Package@swift-5.3.swift diff --git a/Package@swift-5.3.swift b/Package@swift-5.3.swift new file mode 100644 index 0000000..5c91248 --- /dev/null +++ b/Package@swift-5.3.swift @@ -0,0 +1,18 @@ +// swift-tools-version:5.3 + +import PackageDescription + +let package = Package( + name: "Immutable", + platforms: [ + .macOS(.v10_10), .iOS(.v9), .tvOS(.v9) + ], + products: [ + .library(name: "Immutable", targets: ["Immutable"]), + ], + targets: [ + .target(name: "Immutable"), + .testTarget(name: "ImmutableTests", dependencies: ["Immutable"]), + ], + swiftLanguageVersions: [.v5] +) From 3f57629415f7045539255f3ddb3ac9155842298e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=80=E1=85=B5=E1=86=B7=E1=84=8C=E1=85=B5=E1=86=AB?= =?UTF-8?q?=E1=84=80=E1=85=B2?= Date: Tue, 26 Apr 2022 20:35:30 +0900 Subject: [PATCH 3/3] Bump version to 0.7.0 --- Immutable.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Immutable.podspec b/Immutable.podspec index d376599..cafeb4c 100644 --- a/Immutable.podspec +++ b/Immutable.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Immutable' - s.version = '0.6.0' + s.version = '0.7.0' s.summary = 'Not yet implemented functions in Swift.' s.homepage = 'https://github.com/devxoul/Immutable' s.license = { :type => 'MIT', :file => 'LICENSE' }