From efb84cf98cd4c53a3aab2cb25f888d9110742ccf Mon Sep 17 00:00:00 2001 From: 417-72KI <417.72ki@gmail.com> Date: Sat, 19 Aug 2023 01:38:51 +0900 Subject: [PATCH] Bump version to 2.1.0 --- Makefile | 2 +- MultipartFormDataParser.podspec | 8 ++++---- Package.swift | 2 +- README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 951bbf5..be3a6d6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJECT_NAME = MultipartFormDataParser -ver = 2.0.2 +ver = 2.1.0 .SILENT: diff --git a/MultipartFormDataParser.podspec b/MultipartFormDataParser.podspec index d49ea9f..087fcab 100644 --- a/MultipartFormDataParser.podspec +++ b/MultipartFormDataParser.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "MultipartFormDataParser" - spec.version = "2.0.2" + spec.version = "2.1.0" spec.summary = "Mocking UserDefaults for tests" spec.description = <<-DESC @@ -15,9 +15,9 @@ Pod::Spec.new do |spec| spec.author = { "417.72KI" => "417.72ki@gmail.com" } spec.social_media_url = "https://twitter.com/417_72ki" - spec.osx.deployment_target = "10.14" - spec.ios.deployment_target = "11.0" - spec.tvos.deployment_target = "11.0" + spec.osx.deployment_target = "12.0" + spec.ios.deployment_target = "15.0" + spec.tvos.deployment_target = "15.0" spec.requires_arc = true diff --git a/Package.swift b/Package.swift index 880a310..bdb7c90 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription -let isRelease = false +let isRelease = true let isLinux: Bool = { #if os(Linux) return true diff --git a/README.md b/README.md index d965671..f310e94 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ stub(condition: condition) { request in ```swift dependencies: [ - .package(url: "https://github.com/417-72KI/MultipartFormDataParser.git", from: "2.0.2") + .package(url: "https://github.com/417-72KI/MultipartFormDataParser.git", from: "2.1.0") ] ```