Skip to content

Commit 804efcf

Browse files
authored
Bump version to v2.0.0 (#17)
1 parent de1eda0 commit 804efcf

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Lib/Sauce.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
"@executable_path/../Frameworks",
385385
"@loader_path/Frameworks",
386386
);
387-
MACOSX_DEPLOYMENT_TARGET = 10.9;
387+
MACOSX_DEPLOYMENT_TARGET = 10.10;
388388
PRODUCT_BUNDLE_IDENTIFIER = "com.clipy-app.Sauce";
389389
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
390390
SKIP_INSTALL = YES;
@@ -412,7 +412,7 @@
412412
"@executable_path/../Frameworks",
413413
"@loader_path/Frameworks",
414414
);
415-
MACOSX_DEPLOYMENT_TARGET = 10.9;
415+
MACOSX_DEPLOYMENT_TARGET = 10.10;
416416
PRODUCT_BUNDLE_IDENTIFIER = "com.clipy-app.Sauce";
417417
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
418418
SKIP_INSTALL = YES;

Lib/Sauce/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.0.1</string>
18+
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "Sauce",
77
platforms: [
8-
.macOS(.v10_9)
8+
.macOS(.v10_10)
99
],
1010
products: [
1111
.library(

Sauce.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "Sauce"
3-
s.version = "1.1.0"
3+
s.version = "2.0.0"
44
s.summary = "Mapping various keyboard layout sources and key codes in macOS. (e.g.: QWERTY, Dvorak)"
55
s.license = { :type => 'MIT', :file => 'LICENSE' }
66
s.homepage = "https://github.com/Clipy/Sauce"
77
s.author = { "Econa77" => "[email protected]" }
88
s.source = { :git => "https://github.com/Clipy/Sauce.git", :tag => "v#{s.version}" }
9-
s.platform = :osx, '10.9'
9+
s.platform = :osx, '10.10'
1010
s.source_files = 'Lib/Sauce/*.swift'
1111
s.swift_version = '5.0'
1212
s.frameworks = 'Carbon', 'Cocoa'

0 commit comments

Comments
 (0)