Skip to content

Commit 46ccc3a

Browse files
committed
support for tvOS & macOS
1 parent 3398b49 commit 46ccc3a

6 files changed

Lines changed: 14 additions & 10 deletions

File tree

Example/HTTP-Status-Codes-for-Swift/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.0.1</string>
20+
<string>2.0.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

Example/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- Nimble (7.0.2)
33
- Quick (1.2.0)
44
- SnapKit (4.0.0)
5-
- StatusCodes (0.0.1)
5+
- StatusCodes (2.0.1)
66

77
DEPENDENCIES:
88
- Nimble (~> 7.0.2)
@@ -18,7 +18,7 @@ SPEC CHECKSUMS:
1818
Nimble: bfe1f814edabba69ff145cb1283e04ed636a67f2
1919
Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08
2020
SnapKit: a42d492c16e80209130a3379f73596c3454b7694
21-
StatusCodes: cd33accd45d856090c5b9049eaf4b5025824235c
21+
StatusCodes: e8fa9c8e4e17b26da0fc613595786e1f2e2af71b
2222

2323
PODFILE CHECKSUM: 1f07d660b9533e1a858294cddd68b4c0fafd2c04
2424

Example/Pods/Local Podspecs/StatusCodes.podspec.json

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/StatusCodes/Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

StatusCodes.podspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'StatusCodes'
11-
s.version = '2.0.1'
11+
s.version = '2.0.2'
1212
s.summary = 'HTTP status codes for Swift'
1313

1414
s.description = "Swift enum which contans (at least to my knowledge) all available status codes as Int values."
@@ -21,6 +21,8 @@ Pod::Spec.new do |s|
2121
s.social_media_url = 'http://twitter.com/mangowebuk'
2222

2323
s.ios.deployment_target = '10.3'
24+
s.tvos.deployment_target = '10.0'
25+
s.macos.deployment_target = '10.12'
2426

2527
s.source_files = 'HTTP-Status-Codes-for-Swift/Classes/**/*'
2628

0 commit comments

Comments
 (0)