Skip to content

Commit

Permalink
Bump version to v2.0.0 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Econa77 authored Apr 29, 2020
1 parent de1eda0 commit 804efcf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Lib/Sauce.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.9;
MACOSX_DEPLOYMENT_TARGET = 10.10;
PRODUCT_BUNDLE_IDENTIFIER = "com.clipy-app.Sauce";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -412,7 +412,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.9;
MACOSX_DEPLOYMENT_TARGET = 10.10;
PRODUCT_BUNDLE_IDENTIFIER = "com.clipy-app.Sauce";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion Lib/Sauce/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.0.1</string>
<string>2.0.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "Sauce",
platforms: [
.macOS(.v10_9)
.macOS(.v10_10)
],
products: [
.library(
Expand Down
4 changes: 2 additions & 2 deletions Sauce.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "Sauce"
s.version = "1.1.0"
s.version = "2.0.0"
s.summary = "Mapping various keyboard layout sources and key codes in macOS. (e.g.: QWERTY, Dvorak)"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = "https://github.com/Clipy/Sauce"
s.author = { "Econa77" => "s.f.1992.ip@gmail.com" }
s.source = { :git => "https://github.com/Clipy/Sauce.git", :tag => "v#{s.version}" }
s.platform = :osx, '10.9'
s.platform = :osx, '10.10'
s.source_files = 'Lib/Sauce/*.swift'
s.swift_version = '5.0'
s.frameworks = 'Carbon', 'Cocoa'
Expand Down

0 comments on commit 804efcf

Please sign in to comment.