Bump to v3.1.0

This commit is contained in:
Yannick Loriot 2016-09-08 19:57:45 +02:00
parent 2555d1ee05
commit a5eda67413
8 changed files with 42 additions and 14 deletions

View File

@ -1,6 +1,7 @@
# Change log
## Version 3.1.0
## [Version 3.1.0](https://github.com/yannickl/DynamicColor/releases/tag/3.1.0)
*Released on 2016-09-08.*
- [ADD] CIE XYZ Color Space
- Initialization with XYZ components

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DynamicColor'
s.version = '3.0.0'
s.version = '3.1.0'
s.license = 'MIT'
s.summary = 'Yet another extension to manipulate colors easily in Swift'
s.homepage = 'https://github.com/yannickl/DynamicColor.git'
@ -21,4 +21,6 @@ Pod::Spec.new do |s|
s.source_files = 'Sources/*.swift'
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end

View File

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

View File

@ -739,7 +739,7 @@
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 3.1.0;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
@ -765,7 +765,7 @@
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 3.1.0;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = DynamicColor/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@ -788,7 +788,7 @@
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
GCC_GENERATE_TEST_COVERAGE_FILES = NO;
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
@ -810,7 +810,7 @@
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
GCC_GENERATE_TEST_COVERAGE_FILES = NO;
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
INFOPLIST_FILE = DynamicColorTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@ -828,7 +828,7 @@
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
GCC_GENERATE_TEST_COVERAGE_FILES = NO;
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
INFOPLIST_FILE = OSXTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
@ -845,7 +845,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
GCC_GENERATE_TEST_COVERAGE_FILES = NO;
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
INFOPLIST_FILE = OSXTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";

View File

@ -1,5 +1,15 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
@ -30,6 +40,16 @@
"size" : "60x60",
"scale" : "3x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "29x29",
@ -59,6 +79,11 @@
"idiom" : "ipad",
"size" : "76x76",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "83.5x83.5",
"scale" : "2x"
}
],
"info" : {

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.0.0</string>
<string>3.1.0</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.0.0</string>
<string>3.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

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