Bump to v1.5.3
This commit is contained in:
parent
9b625966d8
commit
8a035167e4
42
CHANGELOG.md
42
CHANGELOG.md
|
@ -1,46 +1,60 @@
|
|||
## Changelog
|
||||
## Change log
|
||||
|
||||
### Version v1.5.2
|
||||
### [Version 1.5.3]https://github.com/yannickl/DynamicColor/releases/tag/1.5.3)
|
||||
Released on 2015-08-29.
|
||||
|
||||
- [ADD] Changelog file
|
||||
- [UPDATE] Make the DynamicColor typealias public
|
||||
|
||||
### Version v1.5.1
|
||||
### [Version 1.5.2]https://github.com/yannickl/DynamicColor/releases/tag/1.5.2)
|
||||
Released on 2015-08-27.
|
||||
|
||||
- [FIX] Project framework target sets to 8.0 for Carthage support
|
||||
- [ADD] Changelog.md file
|
||||
|
||||
### Version v1.5.0
|
||||
### [Version 1.5.1]https://github.com/yannickl/DynamicColor/releases/tag/1.5.1)
|
||||
Released on 2015-07-29.
|
||||
|
||||
- [FIX] Project framework target sets to 8.0 for Carthage support (#4)
|
||||
|
||||
### [Version 1.5.0]https://github.com/yannickl/DynamicColor/releases/tag/1.5.0)
|
||||
Released on 2015-07-28.
|
||||
|
||||
- [ADD] Initialization with hue
|
||||
- [ADD] `toHSLAComponents` method
|
||||
|
||||
### Version v1.4.0
|
||||
### [Version 1.4.0]https://github.com/yannickl/DynamicColor/releases/tag/1.4.0)
|
||||
Released on 2015-07-24.
|
||||
|
||||
- [ADD] `toHex` method
|
||||
- [ADD] `isEqualToHex` method
|
||||
|
||||
### Version v1.3.0
|
||||
### [Version 1.3.0]https://github.com/yannickl/DynamicColor/releases/tag/1.3.0)
|
||||
Released on 2015-07-09.
|
||||
|
||||
- [UPDATE] Documentation
|
||||
- [FIX] Some var to let
|
||||
- [FIX] Some var to let (#3)
|
||||
- [ADD] `toComponents` method
|
||||
- [ADD] `red/green/blue/alpha` methods
|
||||
|
||||
### Version v1.2.0
|
||||
### [Version 1.2.0]https://github.com/yannickl/DynamicColor/releases/tag/1.2.0)
|
||||
Released on 2015-06-12.
|
||||
|
||||
- [ADD] Carthage support
|
||||
|
||||
### Version v1.1.1
|
||||
### [Version 1.1.1]https://github.com/yannickl/DynamicColor/releases/tag/1.1.1)
|
||||
Released on 2015-06-10.
|
||||
|
||||
- [FIX] Typos in the documentation
|
||||
- [FIX] Typos in the documentation (#1)
|
||||
- [IMPROVEMENT] Check interval for parameter
|
||||
|
||||
### Version 1.1.0
|
||||
### [Version 1.1.0](https://github.com/yannickl/DynamicColor/releases/tag/1.1.0)
|
||||
Released on 2015-06-06.
|
||||
|
||||
- [ADD] `shadeColor` method
|
||||
- [ADD] `tintColor` method
|
||||
- [ADD] `mixWithColor` method
|
||||
|
||||
### Version 1.0.0 (Initial Commit)
|
||||
### [Version 1.0.0](https://github.com/yannickl/DynamicColor/releases/tag/1.0.0)
|
||||
Released on 2015-06-02.
|
||||
|
||||
- `saturated` method
|
||||
- `desaturate` method
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'DynamicColor'
|
||||
s.version = '1.5.2'
|
||||
s.version = '1.5.3'
|
||||
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.2'
|
||||
pod 'DynamicColor', '~> 1.5.3'
|
||||
```
|
||||
|
||||
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.2
|
||||
github "yannickl/DynamicColor" >= 1.5.3
|
||||
```
|
||||
|
||||
#### Manually
|
||||
|
|
Loading…
Reference in New Issue