Skip to content

Commit d72611a

Browse files
committed
Release version 1.1
1 parent 1f2b186 commit d72611a

5 files changed

Lines changed: 22 additions & 8 deletions

File tree

ActivityRings.podspec

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Pod::Spec.new do |spec|
2+
23
spec.name = 'ActivityRings'
3-
spec.version = '1.0.0'
4+
spec.version = '1.1.0'
45
spec.summary = 'An attempt to recreate the ring controls in Apple’s Activity app'
56
spec.description = <<-DESC
67
ActivityRings is an attempt to recreate the ring controls used in Apple’s iOS and watchOS Activity app
@@ -11,7 +12,15 @@ Pod::Spec.new do |spec|
1112
spec.social_media_url = 'https://twitter.com/HarshilShah1910'
1213

1314
spec.source = { git: 'https://github.com/HarshilShah/ActivityRings.git', tag: spec.version.to_s }
14-
spec.ios.deployment_target = '8.0'
15-
spec.ios.source_files = 'Sources/**/*.{h,swift}'
16-
spec.ios.frameworks = 'SpriteKit'
15+
spec.frameworks = 'SpriteKit'
16+
17+
spec.source_files = 'Sources/Shared/**/*.swift', 'Sources/Supporting\ Files/ActivityRings.h'
18+
spec.ios.source_files = 'Sources/iOS/**/*.swift'
19+
spec.osx.source_files = 'Sources/macOS/**/*.swift'
20+
spec.tvos.source_files = 'Sources/iOS/**/*.swift'
21+
22+
spec.ios.deployment_target = '8.0'
23+
spec.osx.deployment_target = '10.10'
24+
spec.tvos.deployment_target = '9.0'
25+
1726
end

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
## 1.1.0 Release notes (2/11/2017)
4+
5+
- Adds support for macOS and tvOS
6+
37
## 1.0.0 Release notes (18/10/2017)
48
----
59

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22

33
[![Version](https://img.shields.io/github/release/HarshilShah/ActivityRings.svg)](https://github.com/HarshilShah/ActivityRings/releases/latest)
44
![Package Managers](https://img.shields.io/badge/supports-CocoaPods%20%7C%20Carthage-green.svg)
5+
![Platforms](https://img.shields.io/cocoapods/p/ActivityRings.svg?style=flat)
56
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/HarshilShah/ActivityRings/blob/master/LICENSE)
67
[![Contact](https://img.shields.io/badge/contact-%40HarshilShah1910-3a8fc1.svg)](https://twitter.com/HarshilShah1910)
78

89
ActivityRings is an attempt to recreate the ring controls in Apple’s Activity app.
910

1011
This project is a SpriteKit port of [Max Konovalov](https://github.com/maxkonovalov)’s pure UIKit implementation, [MKRingProgressView](https://github.com/maxkonovalov/MKRingProgressView).
1112

12-
![Demo](https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/.assets/demo.gif)
13+
![Demo](https://raw.githubusercontent.com/HarshilShah/ActivityRings/master/Resources/demo.gif)
1314

1415
## Requirements
1516

1617
- Swift 4
17-
- iOS 8
18+
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+
1819

1920
## Installation
2021

Sources/Supporting Files/Info-tvOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/Supporting Files/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)