This commit is contained in:
Sindre Sorhus 2019-12-03 00:43:14 +07:00
parent e213429a79
commit c8ad246c26
4 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'DockProgress' s.name = 'DockProgress'
s.version = '2.0.0' s.version = '2.1.0'
s.summary = 'Show progress in your app\'s Dock icon' s.summary = 'Show progress in your app\'s Dock icon'
s.license = 'MIT' s.license = 'MIT'
s.homepage = 'https://github.com/sindresorhus/DockProgress' s.homepage = 'https://github.com/sindresorhus/DockProgress'

View File

@ -13,7 +13,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2.0.0</string> <string>$(MARKETING_VERSION)</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

@ -378,6 +378,8 @@
OBJ_16 /* Debug */ = { OBJ_16 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
ENABLE_TESTABILITY = YES; ENABLE_TESTABILITY = YES;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
@ -386,12 +388,14 @@
); );
HEADER_SEARCH_PATHS = "$(inherited)"; HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = DockProgress.xcodeproj/DockProgress_Info.plist; INFOPLIST_FILE = DockProgress.xcodeproj/DockProgress_Info.plist;
MARKETING_VERSION = 2.1.0;
OTHER_CFLAGS = "$(inherited)"; OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)";
OTHER_SWIFT_FLAGS = "$(inherited)"; OTHER_SWIFT_FLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = DockProgress; PRODUCT_BUNDLE_IDENTIFIER = DockProgress;
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
TARGET_NAME = DockProgress; TARGET_NAME = DockProgress;
@ -401,6 +405,8 @@
OBJ_17 /* Release */ = { OBJ_17 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
ENABLE_TESTABILITY = YES; ENABLE_TESTABILITY = YES;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
@ -409,12 +415,14 @@
); );
HEADER_SEARCH_PATHS = "$(inherited)"; HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = DockProgress.xcodeproj/DockProgress_Info.plist; INFOPLIST_FILE = DockProgress.xcodeproj/DockProgress_Info.plist;
MARKETING_VERSION = 2.1.0;
OTHER_CFLAGS = "$(inherited)"; OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)";
OTHER_SWIFT_FLAGS = "$(inherited)"; OTHER_SWIFT_FLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = DockProgress; PRODUCT_BUNDLE_IDENTIFIER = DockProgress;
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
TARGET_NAME = DockProgress; TARGET_NAME = DockProgress;

View File

@ -19,7 +19,7 @@ This package is used in production by the [Gifski app](https://github.com/sindre
#### SwiftPM #### SwiftPM
```swift ```swift
.package(url: "https://github.com/sindresorhus/DockProgress", from: "2.0.0") .package(url: "https://github.com/sindresorhus/DockProgress", from: "2.1.0")
``` ```
#### Carthage #### Carthage