diff --git a/ASHorizontalScrollView.podspec b/ASHorizontalScrollView.podspec index 32364a5..2d2caad 100644 --- a/ASHorizontalScrollView.podspec +++ b/ASHorizontalScrollView.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "ASHorizontalScrollView" - s.version = "1.0.3" + s.version = "1.0" s.summary = "App store style horizontal scroll view" s.description = <<-DESC It acts similar to apps sliding behaviours in App store. There are both Objective-C and Swift version available and they perform exactly the same function, please find whichever you like. @@ -20,7 +20,7 @@ Pod::Spec.new do |s| s.author = { "Weiwei Chen" => "terenceluffy@gmail.com" } s.platform = :ios, "8.0" s.ios.deployment_target = "8.0" - s.source = { :git => 'https://github.com/terenceLuffy/AppStoreStyleHorizontalScrollView.git', :tag => "1.0.3" } + s.source = { :git => 'https://github.com/terenceLuffy/AppStoreStyleHorizontalScrollView.git', :tag => "1.0" } s.source_files = 'Sources/*' s.frameworks = 'UIKit' s.requires_arc = true diff --git a/AppStoreStyleHorizontalScrollViewForObjectiveC.podspec b/ASHorizontalScrollViewForObjectiveC.podspec similarity index 92% rename from AppStoreStyleHorizontalScrollViewForObjectiveC.podspec rename to ASHorizontalScrollViewForObjectiveC.podspec index 7482e12..9fda7a6 100644 --- a/AppStoreStyleHorizontalScrollViewForObjectiveC.podspec +++ b/ASHorizontalScrollViewForObjectiveC.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| - s.name = "AppStoreStyleHorizontalScrollViewForObjectiveC" - s.version = "1.0.3" + s.name = "ASHorizontalScrollViewForObjectiveC" + s.version = "1.0" s.summary = "App store style horizontal scroll view Objective-C" s.description = <<-DESC It acts similar to apps sliding behaviours in App store. There are both Objective-C and Swift version available and they perform exactly the same function, please find whichever you like. @@ -20,6 +20,6 @@ Pod::Spec.new do |s| s.author = { "Weiwei Chen" => "terenceluffy@gmail.com" } s.platform = :ios, "8.0" s.ios.deployment_target = "8.0" - s.source = { :git => 'https://github.com/terenceLuffy/AppStoreStyleHorizontalScrollView.git', :tag => "1.0.3" } + s.source = { :git => 'https://github.com/terenceLuffy/AppStoreStyleHorizontalScrollView.git', :tag => "1.0" } s.source_files = 'Sources/ASHorizontalScrollView/*' end diff --git a/README.md b/README.md index d21badd..177101a 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,12 @@ Please note that the gif is not from the sample project. Swift ```ruby -pod 'ASHorizontalScrollView', '~> 1.0.3' +pod 'ASHorizontalScrollView', '~> 1.0' ``` Objective-C ```ruby -pod 'AppStoreStyleHorizontalScrollViewForObjectiveC', '~> 1.0.3' +pod 'AppStoreStyleHorizontalScrollViewForObjectiveC', '~> 1.0' ```