Skip to content

Commit

Permalink
Release version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshilShah committed Oct 17, 2018
1 parent 3e151c9 commit f4aaca5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
18 changes: 10 additions & 8 deletions ActivityRings.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = 'ActivityRings'
spec.version = '1.1.0'
spec.version = '2.0.0'
spec.summary = 'An attempt to recreate the ring controls in Apple’s Activity app'
spec.description = <<-DESC
ActivityRings is an attempt to recreate the ring controls used in Apple’s iOS and watchOS Activity app
Expand All @@ -14,13 +14,15 @@ Pod::Spec.new do |spec|
spec.source = { git: 'https://github.com/HarshilShah/ActivityRings.git', tag: spec.version.to_s }
spec.frameworks = 'SpriteKit'

spec.source_files = 'Sources/Shared/**/*.swift', 'Sources/Supporting\ Files/ActivityRings.h'
spec.ios.source_files = 'Sources/iOS/**/*.swift'
spec.osx.source_files = 'Sources/macOS/**/*.swift'
spec.tvos.source_files = 'Sources/iOS/**/*.swift'
spec.source_files = 'Sources/Shared/**/*.swift', 'Sources/Supporting\ Files/ActivityRings.h'
spec.ios.source_files = 'Sources/iOS/**/*.swift'
spec.osx.source_files = 'Sources/macOS/**/*.swift'
spec.tvos.source_files = 'Sources/iOS/**/*.swift'
spec.watchos.source_files = 'Sources/iOS/**/*.swift', 'Sources/watchOS/**/*.swift'

spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '4.0'

end
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## Changelog

## 2.0.0 Release notes (17/10/2018)
----

- Updated for Swift 4.2
- Adds support for watchOS

## 1.1.0 Release notes (2/11/2017)
----

- Adds support for macOS and tvOS

Expand Down

0 comments on commit f4aaca5

Please sign in to comment.