Bump to v3.2.1

This commit is contained in:
Yannick Loriot 2016-12-15 12:33:54 +01:00
parent cb8502f889
commit 6e469e1969
5 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DynamicColor'
s.version = '3.2.0'
s.version = '3.2.1'
s.license = 'MIT'
s.summary = 'Yet another extension to manipulate colors easily in Swift'
s.homepage = 'https://github.com/yannickl/DynamicColor.git'

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.2.1</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>3.2.0</string>
<string>3.2.1</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>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -235,7 +235,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'DynamicColor', '~> 3.2.0'
pod 'DynamicColor', '~> 3.2.1'
```
Install into your project:
@ -266,7 +266,7 @@ $ brew install carthage
To integrate `DynamicColor` into your Xcode project using Carthage, specify it in your `Cartfile` file:
```ogdl
github "yannickl/DynamicColor" >= 3.2.0
github "yannickl/DynamicColor" >= 3.2.1
```
#### Swift Package Manager
@ -278,7 +278,7 @@ let package = Package(
name: "YOUR_PROJECT_NAME",
targets: [],
dependencies: [
.Package(url: "https://github.com/yannickl/DynamicColor.git", versions: "3.2.0" ..< Version.max)
.Package(url: "https://github.com/yannickl/DynamicColor.git", versions: "3.2.1" ..< Version.max)
]
)
```