Skip to content

Commit 0382680

Browse files
author
Joe Newton
committed
Updated podspec
1 parent edb93c3 commit 0382680

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

CBORCoding.podspec

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "CBORCoding"
4-
s.version = "1.1.0"
4+
s.version = "1.2.0"
55
s.summary = "A CBOR Encoder and Decoder"
66
s.description = <<-DESC
77
A lightweight framework containing a coder pair for encoding and decoding `Codable` conforming types to and from CBOR document format for iOS, macOS, tvOS, and watchOS.
@@ -16,12 +16,19 @@ Pod::Spec.new do |s|
1616
s.tvos.deployment_target = '9.0'
1717
s.watchos.deployment_target = '2.0'
1818

19-
s.source = { :git => "https://github.com/SomeRandomiOSDev/CBORCoding.git", :tag => s.version.to_s }
20-
s.source_files = 'CBORCoding/**/*.swift'
21-
s.frameworks = 'Foundation'
22-
s.swift_version = '5.0'
23-
s.requires_arc = true
19+
s.source = { :git => "https://github.com/SomeRandomiOSDev/CBORCoding.git", :tag => s.version.to_s }
20+
s.source_files = 'Sources/**/*.swift'
21+
s.swift_versions = ['4.2', '5.0']
22+
s.cocoapods_version = '>= 1.7.3'
2423

25-
s.dependency 'Half', '~> 1.0'
24+
s.dependency 'Half', '~> 1.2'
25+
26+
s.test_spec 'Tests' do |ts|
27+
ts.ios.deployment_target = '8.0'
28+
ts.macos.deployment_target = '10.10'
29+
ts.tvos.deployment_target = '9.0'
30+
31+
ts.source_files = 'Tests/CBORCodingTests/*Tests.swift'
32+
end
2633

2734
end

0 commit comments

Comments
 (0)