Skip to content

Commit

Permalink
bump version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nixzhu committed Jun 13, 2021
1 parent 6e48130 commit 7f7c43e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 15 deletions.
16 changes: 8 additions & 8 deletions China.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -534,11 +534,11 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = China/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.0;
MARKETING_VERSION = 2.2.0;
PRODUCT_BUNDLE_IDENTIFIER = com.nixWork.China;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
Expand All @@ -553,11 +553,11 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = China/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.0;
MARKETING_VERSION = 2.2.0;
PRODUCT_BUNDLE_IDENTIFIER = com.nixWork.China;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
Expand All @@ -571,7 +571,7 @@
APPLICATION_EXTENSION_API_ONLY = NO;
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -580,7 +580,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.1.0;
MARKETING_VERSION = 2.2.0;
PRODUCT_BUNDLE_IDENTIFIER = com.nixWork.MonkeyKing;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -599,7 +599,7 @@
APPLICATION_EXTENSION_API_ONLY = NO;
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -608,7 +608,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.1.0;
MARKETING_VERSION = 2.2.0;
PRODUCT_BUNDLE_IDENTIFIER = com.nixWork.MonkeyKing;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
8 changes: 7 additions & 1 deletion China/WeChatViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@ class WeChatViewController: UIViewController {
title: "Mini App, \(UUID().uuidString)",
description: nil,
thumbnail: UIImage(named: "rabbit"),
media: .miniApp(url: URL(string: "http://soyep.com")!, path: "", withShareTicket: true, type: .release)
media: .miniApp(
url: URL(string: "http://soyep.com")!,
path: "",
withShareTicket: true,
type: .release,
userName: nil
)
)
shareInfo(info)
}
Expand Down
2 changes: 1 addition & 1 deletion MonkeyKing.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "MonkeyKing"
s.version = "2.1.0"
s.version = "2.2.0"
s.summary = "MonkeyKing helps you to post messages to Chinese Social Networks, or do OAuth and Payment."

s.description = <<-DESC
Expand Down
13 changes: 8 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ let package = Package(
name: "MonkeyKing",
targets: ["MonkeyKing"]
),
.library(name: "MonkeyKingBinary", targets: ["MonkeyKingBinary"])
.library(
name: "MonkeyKingBinary",
targets: ["MonkeyKingBinary"]
)
],
targets: [
.target(name: "MonkeyKing"),
Expand All @@ -20,9 +23,9 @@ let package = Package(
path: "Tests/MonkeyKingTests"
),
.binaryTarget(
name: "MonkeyKingBinary",
url: "https://github.com/CodeEagle/MonkeyKing/releases/download/2.2.0/MonkeyKingBinary.xcframework.zip",
checksum: "c186cb3a81a2a9b4434632829ff83f7f4c2b16ab119bf175d1e2e0a5bd88fed3"
),
name: "MonkeyKingBinary",
url: "https://github.com/nixzhu/MonkeyKing/releases/download/2.2.0/MonkeyKing.xcframework.zip",
checksum: "9b456c3a79382f06243f7ac6dde6aaf30bfc7207d580e3aafae40dfa43be873c"
),
]
)

0 comments on commit 7f7c43e

Please sign in to comment.