Skip to content

Commit cc36c39

Browse files
authored
Merge pull request #30 from kaferi/master
Update to v20.12
2 parents 3015da0 + 3753330 commit cc36c39

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

AsposePdfCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pod::Spec.new do |s|
55
s.ios.deployment_target = '10.0'
66
s.osx.deployment_target = '10.11'
77
s.tvos.deployment_target = '9.0'
8-
s.version = '20.9.0'
8+
s.version = '20.12.0'
99
s.swift_version = '4.1'
1010
s.source = { :git => 'https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-swift.git', :tag => s.version.to_s }
1111
s.authors = 'Aspose PDF Cloud'

AsposePdfCloud.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2016,6 +2016,7 @@
20162016
buildSettings = {
20172017
CLANG_ENABLE_MODULES = YES;
20182018
CODE_SIGN_IDENTITY = "";
2019+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
20192020
CODE_SIGN_STYLE = Automatic;
20202021
DEFINES_MODULE = YES;
20212022
DEVELOPMENT_TEAM = 2J7FTC9Q5N;
@@ -2029,7 +2030,7 @@
20292030
"@executable_path/Frameworks",
20302031
"@loader_path/Frameworks",
20312032
);
2032-
MARKETING_VERSION = 20.9.0;
2033+
MARKETING_VERSION = 20.12.0;
20332034
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
20342035
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
20352036
SKIP_INSTALL = YES;
@@ -2045,6 +2046,7 @@
20452046
buildSettings = {
20462047
CLANG_ENABLE_MODULES = YES;
20472048
CODE_SIGN_IDENTITY = "";
2049+
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
20482050
CODE_SIGN_STYLE = Automatic;
20492051
DEFINES_MODULE = YES;
20502052
DEVELOPMENT_TEAM = 2J7FTC9Q5N;
@@ -2058,7 +2060,7 @@
20582060
"@executable_path/Frameworks",
20592061
"@loader_path/Frameworks",
20602062
);
2061-
MARKETING_VERSION = 20.9.0;
2063+
MARKETING_VERSION = 20.12.0;
20622064
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
20632065
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
20642066
SKIP_INSTALL = YES;

AsposePdfCloud/APIs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ open class RequestBuilder<T> {
5151
//OAuth2.0
5252
_ = addHeader(name: "Authorization", value: "Bearer " + AsposePdfCloudAPI.accessToken!)
5353
.addHeader(name: "x-aspose-client", value: "swift sdk")
54-
.addHeader(name: "x-aspose-client-version", value: "20.9.0")
54+
.addHeader(name: "x-aspose-client-version", value: "20.12.0")
5555
}
5656

5757
open func addHeaders(_ aHeaders:[String:String]) {

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Edit assembly info of a PDF document online https://products.aspose.app/pdf/asse
1717
$ gem install cocoapods
1818
```
1919

20-
> CocoaPods 1.1+ is required to build AsposePdfCloud 20.9+.
20+
> CocoaPods 1.1+ is required to build AsposePdfCloud 20.12+.
2121
2222
To integrate AsposePdfCloud into your Xcode project using CocoaPods, specify it in your `Podfile`:
2323

@@ -27,7 +27,7 @@ platform :ios, '10.0'
2727
use_frameworks!
2828

2929
target '<Your Target Name>' do
30-
pod 'AsposePdfCloud', '~> 20.9'
30+
pod 'AsposePdfCloud', '~> 20.12'
3131
end
3232
```
3333

0 commit comments

Comments
 (0)