Bump Version

This commit is contained in:
Yannick Loriot 2017-11-17 22:30:13 +01:00
parent 261ffb4871
commit b5750c541c
8 changed files with 10 additions and 10 deletions

View File

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

View File

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

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>4.0.1</string> <string>4.0.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string> <string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>4.0.1</string> <string>4.0.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string> <string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>4.0.1</string> <string>4.0.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string> <string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>

View File

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

View File

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

View File

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