Bump to v2.0.0 #4

This commit is contained in:
Yannick Loriot 2016-09-15 16:49:37 +02:00
parent 71cbb100d9
commit 512e06cd7a
7 changed files with 16 additions and 13 deletions

1
.swift-version Normal file
View File

@ -0,0 +1 @@
3.0

View File

@ -1,15 +1,10 @@
language: objective-c
osx_image: xcode7.1
branches:
only:
- master
env:
matrix:
- DESTINATION="OS=9.1,name=iPad 2"
osx_image: xcode8
before_install:
- gem install xcpretty
script:
- cd Example
- 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:
- bash <(curl -s https://codecov.io/bash)

View File

@ -1,5 +1,12 @@
# 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)
Released on 2015-12-14.

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>2.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>2.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>2.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Splitflap'
s.version = '1.1.2'
s.version = '2.0.0'
s.license = 'MIT'
s.summary = 'A simple split-flap display for your Swift applications'
s.description = <<-DESC
@ -18,6 +18,6 @@ Pod::Spec.new do |s|
s.ios.frameworks = 'UIKit', 'QuartzCore'
s.tvos.frameworks = 'UIKit', 'QuartzCore'
s.source_files = 'Splitflap/*.swift'
s.source_files = 'Sources/*.swift'
s.requires_arc = true
end