Bump to v1.5.4
This commit is contained in:
parent
6c0fd02b7e
commit
aaef49ff21
|
@ -1,5 +1,9 @@
|
|||
# Change log
|
||||
|
||||
## [Version 1.5.4](https://github.com/yannickl/DynamicColor/releases/tag/1.5.4)
|
||||
|
||||
- [FIX] Mandatory clip parameters for Xcode7 beta 6 ([#5](https://github.com/yannickl/DynamicColor/pull/5))
|
||||
|
||||
## [Version 1.5.3](https://github.com/yannickl/DynamicColor/releases/tag/1.5.3)
|
||||
Released on 2015-08-29.
|
||||
|
||||
|
@ -64,4 +68,6 @@ Released on 2015-06-02.
|
|||
- `adjustHue` method
|
||||
- `complementColor` method
|
||||
- `invertColor` method
|
||||
- `toHexString` method
|
||||
- Initialization with hex strings and integers
|
||||
- Cocoapods support
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'DynamicColor'
|
||||
s.version = '1.5.3'
|
||||
s.version = '1.5.4'
|
||||
s.license = 'MIT'
|
||||
s.summary = 'Yet another extension to manipulate colors easily in Swift'
|
||||
s.homepage = 'https://github.com/yannickl/DynamicColor.git'
|
||||
|
|
|
@ -142,7 +142,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
|||
platform :ios, '8.0'
|
||||
|
||||
use_frameworks!
|
||||
pod 'DynamicColor', '~> 1.5.3'
|
||||
pod 'DynamicColor', '~> 1.5.4'
|
||||
```
|
||||
|
||||
Install into your project:
|
||||
|
@ -173,7 +173,7 @@ $ brew install carthage
|
|||
To integrate `DynamicColor` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
||||
|
||||
```ogdl
|
||||
github "yannickl/DynamicColor" >= 1.5.3
|
||||
github "yannickl/DynamicColor" >= 1.5.4
|
||||
```
|
||||
|
||||
#### Manually
|
||||
|
|
Loading…
Reference in New Issue