Bump to v2.0.0 #4
This commit is contained in:
parent
71cbb100d9
commit
512e06cd7a
|
@ -0,0 +1 @@
|
||||||
|
3.0
|
11
.travis.yml
11
.travis.yml
|
@ -1,15 +1,10 @@
|
||||||
language: objective-c
|
language: objective-c
|
||||||
osx_image: xcode7.1
|
osx_image: xcode8
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
env:
|
|
||||||
matrix:
|
|
||||||
- DESTINATION="OS=9.1,name=iPad 2"
|
|
||||||
before_install:
|
before_install:
|
||||||
- gem install xcpretty
|
- gem install xcpretty
|
||||||
script:
|
script:
|
||||||
|
- cd Example
|
||||||
- xcodebuild -version
|
- xcodebuild -version
|
||||||
- xcodebuild -project Example/SplitflapExample.xcodeproj -scheme SplitflapTests -sdk iphonesimulator -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=YES test | xcpretty -c
|
- xcodebuild -project SplitflapExample.xcodeproj -scheme SplitflapTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6" -configuration Release GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES ONLY_ACTIVE_ARCH=YES test | xcpretty -c
|
||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Change log
|
# Change log
|
||||||
|
|
||||||
|
## [Version 2.0.0](https://github.com/yannickl/Splitflap/releases/tag/2.0.0)
|
||||||
|
*Released on 2016-09-15.*
|
||||||
|
|
||||||
|
**Swift 3 Supports**
|
||||||
|
|
||||||
|
- [ADD] Swift Package Manager supports
|
||||||
|
|
||||||
## [Version 1.1.1](https://github.com/yannickl/Splitflap/releases/tag/1.1.1)
|
## [Version 1.1.1](https://github.com/yannickl/Splitflap/releases/tag/1.1.1)
|
||||||
Released on 2015-12-14.
|
Released on 2015-12-14.
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.1.2</string>
|
<string>2.0.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.1.2</string>
|
<string>2.0.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.1.2</string>
|
<string>2.0.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'Splitflap'
|
s.name = 'Splitflap'
|
||||||
s.version = '1.1.2'
|
s.version = '2.0.0'
|
||||||
s.license = 'MIT'
|
s.license = 'MIT'
|
||||||
s.summary = 'A simple split-flap display for your Swift applications'
|
s.summary = 'A simple split-flap display for your Swift applications'
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
|
@ -18,6 +18,6 @@ Pod::Spec.new do |s|
|
||||||
s.ios.frameworks = 'UIKit', 'QuartzCore'
|
s.ios.frameworks = 'UIKit', 'QuartzCore'
|
||||||
s.tvos.frameworks = 'UIKit', 'QuartzCore'
|
s.tvos.frameworks = 'UIKit', 'QuartzCore'
|
||||||
|
|
||||||
s.source_files = 'Splitflap/*.swift'
|
s.source_files = 'Sources/*.swift'
|
||||||
s.requires_arc = true
|
s.requires_arc = true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue