Bladeren bron

Merge pull request #425 from dnkoutso/swift_version_podspec

Use `swift_versions` DSL instead of `.swift-version` file.
Victor Sigler 7 jaren geleden
bovenliggende
commit
70355c4e41
3 gewijzigde bestanden met toevoegingen van 2 en 1 verwijderingen
  1. 0 1
      .swift-version
  2. 1 0
      CHANGELOG.md
  3. 1 0
      Swifter.podspec

+ 0 - 1
.swift-version

@@ -1 +0,0 @@
-4.2

+ 1 - 0
CHANGELOG.md

@@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file. Changes not
 - Set the version of the HTTP Server based in the project version in the **Info.plist** for macOS, iOS and tvOS platforms. ([#416](https://github.com/httpswift/swifter/pull/416)) by [@Vkt0r](https://github.com/Vkt0r)
 - Update `HttpParser` so it percent-encodes the URL components before initializing `URLComponents`. ([#423](https://github.com/httpswift/swifter/pull/423)) by [@nejcvivod](https://github.com/nejcvivod)
 - Update `SwifterTestsHttpParser` with a test for parsing bracketed query strings. ([#423](https://github.com/httpswift/swifter/pull/423)) by [@nejcvivod](https://github.com/nejcvivod)
+- Use `swift_version` CocoaPods DSL. ([#425](https://github.com/httpswift/swifter/pull/425)) by [@dnkoutso](https://github.com/dnkoutso)
 
 # [1.4.7] 
 

+ 1 - 0
Swifter.podspec

@@ -11,5 +11,6 @@ Pod::Spec.new do |s|
   s.tvos.deployment_target = "9.0"
   s.source                = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.4.7" }
   s.source_files          = 'XCode/Sources/*.{swift}'
+  s.swift_version         = '4.2'
 
 end