Skip to content

Commit

Permalink
bump and fix podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Salvatore Milazzo committed Jun 26, 2023
1 parent 8ce1758 commit 95af2a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DSJSONSchemaValidation.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]', 'Andrew Podkovyrin' => '[email protected]'}
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
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -18,4 +18,4 @@ let package = Package(
path: "DSJSONSchemaValidation"
)
]
)
)

0 comments on commit 95af2a6

Please sign in to comment.