Skip to content

Commit

Permalink
SDK1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinguang Wang committed Jan 30, 2018
1 parent 582692e commit 431c316
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
3.2
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
###### SDK1.8.2
- SDK增加开发票授权 WXInvoiceAuthInsert
- SDK增加非税接口 WXNontaxPay
- SDK增加医保接口 WXPayInsurance
- 更换MTA库

###### SDK1.8.1
- SDK打开小程序支持指定版本(体验,开发,正式版)
- SDK分享小程序支持指定版本(体验,开发,正式版)
- SDK支持输出log日志

###### SDK1.8.0
- SDK支持打开小程序
- SDK分享小程序支持shareTicket
Expand Down
6 changes: 6 additions & 0 deletions SDKExport/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
重要!
SDK1.8.2
1. SDK增加开发票授权 WXInvoiceAuthInsert
2. SDK增加非税接口 WXNontaxPay
3. SDK增加医保接口 WXPayInsurance
4. 更换MTA库

SDK1.8.1
1. SDK打开小程序支持指定版本(体验,开发,正式版)
2. SDK分享小程序支持指定版本(体验,开发,正式版)
Expand Down
43 changes: 43 additions & 0 deletions SDKExport/WXApiObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,49 @@ typedef void(^WXLogBolock)(NSString * log);

@end

#pragma mark - WXinvoiceAuthInsertReq
@interface WXInvoiceAuthInsertReq : BaseReq

@property (nonatomic, strong) NSString *urlString;

@end

#pragma mark - WXinvoiceAuthInsertResp

@interface WXInvoiceAuthInsertResp : BaseResp

@property (nonatomic, strong) NSString * wxOrderId;

@end

#pragma mark - WXNontaxPayReq
@interface WXNontaxPayReq:BaseReq

@property (nonatomic, strong) NSString *urlString;

@end

#pragma mark - WXNontaxPayResp
@interface WXNontaxPayResp : BaseResp

@property (nonatomic, strong) NSString *wxOrderId;

@end

#pragma mark - WXPayInsuranceReq
@interface WXPayInsuranceReq : BaseReq

@property (nonatomic, strong) NSString *urlString;

@end

#pragma mark - WXPayInsuranceResp
@interface WXPayInsuranceResp : BaseResp

@property (nonatomic, strong) NSString *wxOrderId;

@end

#pragma mark - WXMediaMessage


Expand Down
Binary file modified SDKExport/libWeChatSDK.a
Binary file not shown.
4 changes: 2 additions & 2 deletions WechatKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "WechatKit"
s.version = "0.3.5"
s.summary = "一款快速实现微信第三方登录的框架(Swift4.0版) SDK1.8.1"
s.version = "0.3.6"
s.summary = "一款快速实现微信第三方登录的框架(Swift4.0版) SDK1.8.2"
s.homepage = "https://github.com/Xinguang/WechatKit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Xinguang" => "wechatkit.github.com@kansea.com" }
Expand Down
2 changes: 1 addition & 1 deletion WechatKit/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.3.4</string>
<string>0.3.6</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 431c316

Please sign in to comment.