Skip to content

Commit

Permalink
Version 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjaprox committed Dec 24, 2018
1 parent cf3b4ac commit a7c5538
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 24 deletions.
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- NVActivityIndicatorView (4.4.1):
- NVActivityIndicatorView/Presenter (= 4.4.1)
- NVActivityIndicatorView/Presenter (4.4.1)
- NVActivityIndicatorView (4.5.0):
- NVActivityIndicatorView/Presenter (= 4.5.0)
- NVActivityIndicatorView/Presenter (4.5.0)

DEPENDENCIES:
- NVActivityIndicatorView (from `../`)
Expand All @@ -11,7 +11,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
NVActivityIndicatorView: 45cdcf74749ce2f4a02500be0e751dcecfc0c6e9
NVActivityIndicatorView: 5a54c8507e71bbb6ce347b9ae0905f61e32dfbcc

PODFILE CHECKSUM: e5d164996aa6d71a0eda53503111c16d861ecbc6

Expand Down
40 changes: 21 additions & 19 deletions NVActivityIndicatorView.podspec
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
Pod::Spec.new do |s|
s.name = "NVActivityIndicatorView"
s.version = "4.4.1"
s.summary = "A collection of awesome loading animations"
s.homepage = "https://github.com/ninjaprox/NVActivityIndicatorView"
s.screenshot = "https://raw.githubusercontent.com/ninjaprox/NVActivityIndicatorView/master/Demo.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vinh Nguyen" => "[email protected]" }
s.social_media_url = "http://twitter.com/ninjaprox"
s.name = 'NVActivityIndicatorView'
s.version = '4.5.0'
s.summary = 'A collection of awesome loading animations'
s.homepage = 'https://github.com/ninjaprox/NVActivityIndicatorView'
s.screenshot = 'https://raw.githubusercontent.com/ninjaprox/NVActivityIndicatorView/master/Demo.gif'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Vinh Nguyen' => '[email protected]' }
s.social_media_url = 'http://twitter.com/ninjaprox'
s.documentation_url = 'https://nvactivityindicatorview.vinhis.me'

s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.swift_version = "4.0"
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '4.2'

s.source = { :git => "https://github.com/ninjaprox/NVActivityIndicatorView.git", :tag => s.version }
s.source = { git: 'https://github.com/ninjaprox/NVActivityIndicatorView.git',
tag: s.version }

s.subspec "Presenter" do |ps|
ps.source_files = "Source/NVActivityIndicatorView/**/*.swift"
s.subspec 'Presenter' do |ps|
ps.source_files = 'Source/NVActivityIndicatorView/**/*.swift'
end
s.subspec "AppExtension" do |aes|
aes.source_files = "Source/NVActivityIndicatorView/**/*.swift"
aes.exclude_files = "Source/NVActivityIndicatorView/Presenter/*.swift"
s.subspec 'AppExtension' do |aes|
aes.source_files = 'Source/NVActivityIndicatorView/**/*.swift'
aes.exclude_files = 'Source/NVActivityIndicatorView/Presenter/*.swift'
end
s.default_subspec = "Presenter"
s.default_subspec = 'Presenter'

s.frameworks = "UIKit", "QuartzCore"
s.frameworks = 'UIKit', 'QuartzCore'
end
2 changes: 1 addition & 1 deletion Source/NVActivityIndicatorView/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.1</string>
<string>4.5.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
1 change: 1 addition & 0 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ type="${1:-patch}"

fastlane run increment_version_number bump_type:"$type" xcodeproj:"Source/NVActivityIndicatorView.xcodeproj"
fastlane run version_bump_podspec bump_type:"$type" path:"NVActivityIndicatorView.podspec"
pod install --project-directory=Example

0 comments on commit a7c5538

Please sign in to comment.