Răsfoiți Sursa

Merge pull request #400 from welsonpan/stable

Fix the Swifter.podspec path to the source files
Victor Sigler 7 ani în urmă
părinte
comite
ad20738cd8
2 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 1 1
      CHANGELOG.md
  2. 2 2
      Swifter.podspec

+ 1 - 1
CHANGELOG.md

@@ -29,7 +29,7 @@ All notable changes to this project will be documented in this file. Changes not
 
 ## Changed
 - Performance: Batch reads of websocket payloads rather than reading byte-by-byte. ([#387](https://github.com/httpswift/swifter/pull/387)) by [@lynaghk](https://github.com/lynaghk)
-
+- Podspec source_files updated to match source file directory changes. ([#400](https://github.com/httpswift/swifter/pull/400)) by [@welsonpan](https://github.com/welsonpan)
 
 # [1.4.6] 
 ## Added

+ 2 - 2
Swifter.podspec

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