Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dashpay/JSONSchemaValidation
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Objectway/JSONSchemaValidation
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 26, 2023

  1. bump and fix podspec

    Salvatore Milazzo committed Jun 26, 2023
    Copy the full SHA
    95af2a6 View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 DSJSONSchemaValidation.podspec
  2. +2 −2 Package.swift
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' => '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
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -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"
)
]
)
)