From 6543c4531044f9bf20d1fff18aac81766e8b80bd Mon Sep 17 00:00:00 2001 From: Keefer Taylor Date: Wed, 6 Nov 2019 01:16:49 -0500 Subject: [PATCH 1/2] Update project.yml --- project.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project.yml b/project.yml index 3760b4e..858170f 100644 --- a/project.yml +++ b/project.yml @@ -7,6 +7,8 @@ targets: Base58Swift: type: framework platform: [iOS, macOS] + deploymentTarget: + iOS: 10.0 sources: [Base58Swift] scheme: testTargets: From 106bf27d2f7499670faa1787e03de550988dc763 Mon Sep 17 00:00:00 2001 From: Keefer Taylor Date: Wed, 6 Nov 2019 01:41:56 -0500 Subject: [PATCH 2/2] cut 2.1.6 --- Base58Swift.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Base58Swift.podspec b/Base58Swift.podspec index 302aaee..a07970f 100644 --- a/Base58Swift.podspec +++ b/Base58Swift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Base58Swift" - s.version = "2.1.5" + s.version = "2.1.6" s.summary = "A pure swift implementation of base58 string encoding and decoding." s.description = <<-DESC A pure swift implementation of base58 string encoding and decoding. Based off of https://github.com/jbenet/go-base58. @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/keefertaylor/Base58Swift" s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Keefer Taylor" => "keefer@keefertaylor.com" } - s.source = { :git => "https://github.com/keefertaylor/Base58Swift.git", :tag => "2.1.5" } + s.source = { :git => "https://github.com/keefertaylor/Base58Swift.git", :tag => "2.1.6" } s.source_files = "Base58Swift/*.swift" s.swift_version = "4.2" s.ios.deployment_target = "8.0"