Bump to v1.0.1
This commit is contained in:
parent
6c2d19b088
commit
0e77d6984d
|
@ -1,5 +1,10 @@
|
|||
# Change log
|
||||
|
||||
## [Version 1.0.1](https://github.com/yannickl/Splitflap/releases/tag/1.0.1)
|
||||
Released on 2015-11-17.
|
||||
|
||||
- [FIX] Builder properties access control ([#1](https://github.com/yannickl/Splitflap/issues/1))
|
||||
|
||||
## [Version 1.0.0](https://github.com/yannickl/Splitflap/releases/tag/1.0.0)
|
||||
Released on 2015-11-13.
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0</string>
|
||||
<string>1.0.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0</string>
|
||||
<string>1.0.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -90,7 +90,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
|||
platform :ios, '8.0'
|
||||
|
||||
use_frameworks!
|
||||
pod 'Splitflap', '~> 1.0.0'
|
||||
pod 'Splitflap', '~> 1.0.1'
|
||||
```
|
||||
|
||||
Install into your project:
|
||||
|
@ -121,7 +121,7 @@ $ brew install carthage
|
|||
To integrate `Splitflap` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
||||
|
||||
```ogdl
|
||||
github "yannickl/Splitflap" >= 1.0.0
|
||||
github "yannickl/Splitflap" >= 1.0.1
|
||||
```
|
||||
|
||||
#### Manually
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'Splitflap'
|
||||
s.version = '1.0.0'
|
||||
s.version = '1.0.1'
|
||||
s.license = 'MIT'
|
||||
s.summary = 'A simple split-flap display for your Swift applications'
|
||||
s.description = <<-DESC
|
||||
|
|
Loading…
Reference in New Issue