Skip to content

Commit b190045

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents b523aaa + 7173dd1 commit b190045

File tree

7 files changed

+27
-6
lines changed

7 files changed

+27
-6
lines changed

AsposeWordsCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AsposeWordsCloud'
3-
s.version = '21.4'
3+
s.version = '21.5'
44
s.summary = 'Aspose Words for Cloud.'
55
s.homepage = 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,19 @@ This repository contains Aspose.Words Cloud SDK for Swift source code. This SDK
1313
* Watermarks and protection
1414
* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
1515

16+
## Enhancements in Version 21.5
17+
18+
- Update dependencies in sdk
19+
20+
1621
## Enhancements in Version 21.4
1722

18-
- Support batch requests.
19-
- Added DependsOn and ResultOf features support for batch requests.
23+
- Removed obsolete pdf save option 'EscapeUri'
24+
- SaveOptions now contains CustomTimeZoneInfo to set custom timezone when SdtType.Date structured document tag updated from custom XML
25+
- Url of child requests in batch can be full now (earlier it can be only relative)
26+
- Added 'RquestId' header to all responses
27+
- Support batch requests
28+
- Added DependsOn and ResultOf features support for batch requests
2029

2130
## Enhancements in Version 21.3
2231

@@ -126,7 +135,7 @@ Add link to this repository as dependency to your Package.swift:
126135

127136
dependencies: [
128137
// Dependencies declare other packages that this package depends on.
129-
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "21.4"),
138+
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "21.5"),
130139
],
131140
targets: [
132141
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -144,7 +153,7 @@ targets: [
144153
Add link to git repository as dependency to your Podfile:
145154

146155
```ruby
147-
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '21.4'
156+
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '21.5'
148157
```
149158

150159
## Getting Started

Sources/AsposeWordsCloud/Api/Configuration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@ public class Configuration : Codable {
117117

118118
// Returns SDK version for using in statistics headers
119119
public func getSdkVersion() -> String {
120-
return "21.4";
120+
return "21.5";
121121
}
122122
}

Sources/AsposeWordsCloud/Model/Font.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,6 +1145,9 @@ public class Font : LinkElement {
11451145
// Enum value "listTable7ColorfulAccent6"
11461146
case listTable7ColorfulAccent6 = "ListTable7ColorfulAccent6"
11471147

1148+
// Enum value "smartLink"
1149+
case smartLink = "SmartLink"
1150+
11481151
// Enum value "user"
11491152
case user = "User"
11501153

Sources/AsposeWordsCloud/Model/ParagraphFormatBase.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,9 @@ public class ParagraphFormatBase : LinkElement {
12361236
// Enum value "listTable7ColorfulAccent6"
12371237
case listTable7ColorfulAccent6 = "ListTable7ColorfulAccent6"
12381238

1239+
// Enum value "smartLink"
1240+
case smartLink = "SmartLink"
1241+
12391242
// Enum value "user"
12401243
case user = "User"
12411244

Sources/AsposeWordsCloud/Model/Style.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,6 +1145,9 @@ public class Style : LinkElement {
11451145
// Enum value "listTable7ColorfulAccent6"
11461146
case listTable7ColorfulAccent6 = "ListTable7ColorfulAccent6"
11471147

1148+
// Enum value "smartLink"
1149+
case smartLink = "SmartLink"
1150+
11481151
// Enum value "user"
11491152
case user = "User"
11501153

Sources/AsposeWordsCloud/Model/TableProperties.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,6 +1158,9 @@ public class TableProperties : LinkElement {
11581158
// Enum value "listTable7ColorfulAccent6"
11591159
case listTable7ColorfulAccent6 = "ListTable7ColorfulAccent6"
11601160

1161+
// Enum value "smartLink"
1162+
case smartLink = "SmartLink"
1163+
11611164
// Enum value "user"
11621165
case user = "User"
11631166

0 commit comments

Comments
 (0)