-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9093f61
commit 50acf9b
Showing
3 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
## 0.0.2 - Released Feb 29, 2015 | ||
- Fixed an import with missing .h on main header | ||
- Do not ask the store to delete an object if `nil` | ||
|
||
## 0.0.1 - Released Feb 26, 2015 | ||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "WANetworkRouting" | ||
s.version = "0.0.1" | ||
s.version = "0.0.2" | ||
s.summary = "A routing library to fetch objects from an API and map them to your app" | ||
s.homepage = "https://github.com/Wasappli/WANetworkRouting" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Marian Paul" => "[email protected]" } | ||
s.platform = :ios, "7.0" | ||
s.source = { :git => "https://github.com/Wasappli/WANetworkRouting.git", :tag => "0.0.1" } | ||
s.source = { :git => "https://github.com/Wasappli/WANetworkRouting.git", :tag => "0.0.2" } | ||
s.source_files = "Files/*.{h,m}" | ||
s.requires_arc = true | ||
s.dependency "AFNetworking" | ||
s.dependency "WAMapping" | ||
|
||
s.dependency 'AFNetworking', '~> 3.0' | ||
s.dependency 'WAMapping', '~> 0.0.3' | ||
end |