From 95af2a62885ca6a88b009c6b7a175d3244bccee1 Mon Sep 17 00:00:00 2001 From: Salvatore Milazzo Date: Mon, 26 Jun 2023 16:32:22 +0200 Subject: [PATCH] bump and fix podspec --- DSJSONSchemaValidation.podspec | 8 ++++---- Package.swift | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DSJSONSchemaValidation.podspec b/DSJSONSchemaValidation.podspec index aab5287..42b97ee 100644 --- a/DSJSONSchemaValidation.podspec +++ b/DSJSONSchemaValidation.podspec @@ -1,16 +1,16 @@ Pod::Spec.new do |s| s.name = 'DSJSONSchemaValidation' - s.version = '2.0.7' + s.version = '2.0.7.1' s.authors = {'Vlas Voloshin' => 'argentumko@gmail.com', 'Andrew Podkovyrin' => 'podkovyrin@gmail.com'} s.homepage = 'https://github.com/dashevo/JSONSchemaValidation' s.social_media_url = 'https://twitter.com/podkovyr' s.summary = 'JSON Schema draft 4, 6 and 7 parsing and validation library written in Objective C.' - s.source = {:git => 'https://github.com/dashevo/JSONSchemaValidation.git', :tag => s.version.to_s} + s.source = { :git => "https://github.com/Objectway/JSONSchemaValidation.git", :tag => "#{s.version}" } s.license = 'MIT' s.requires_arc = true - s.ios.deployment_target = '7.0' - s.osx.deployment_target = '10.9' + s.ios.deployment_target = '11.0' + s.osx.deployment_target = '10.13' s.source_files = 'DSJSONSchemaValidation/**/*.{h,m}' end diff --git a/Package.swift b/Package.swift index cc6c80d..41edf4a 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let package = Package( name: "DSJSONSchemaValidation", - platforms: [.iOS(.v8), .tvOS(.v9), .macOS(.v10_10)], + platforms: [.iOS(.v11), .tvOS(.v9), .macOS(.v10_13)], products: [ .library( name: "DSJSONSchemaValidation", @@ -18,4 +18,4 @@ let package = Package( path: "DSJSONSchemaValidation" ) ] -) \ No newline at end of file +)