Skip to content

Commit d72c6b1

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 7badcf4 + dee377e commit d72c6b1

File tree

681 files changed

+4499
-1262
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

681 files changed

+4499
-1262
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.12'
3+
s.version = '22.1'
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: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,18 @@ 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 22.1
17+
18+
- Added 'FieldOptions.FieldUpdateCultureName' to set Culture for fields
19+
- Added 'DocumentEntry.Password' to set an encrypted password for appending document
20+
- Added 'encryptedPassword2' query parameter to CompareDocuments to set an encrypted password for the second comparing document
21+
22+
1623
## Enhancements in Version 21.12
1724

18-
- Added 'timeout' parameter to api configuration
25+
- Added FieldOptions parameter to mail merge operations
26+
- Added timeout parameter to api configuration
27+
1928

2029
## Enhancements in Version 21.11
2130

@@ -173,7 +182,7 @@ Add link to this repository as dependency to your Package.swift:
173182

174183
dependencies: [
175184
// Dependencies declare other packages that this package depends on.
176-
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "21.12"),
185+
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "22.1"),
177186
],
178187
targets: [
179188
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -191,7 +200,7 @@ targets: [
191200
Add link to git repository as dependency to your Podfile:
192201

193202
```ruby
194-
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '21.12'
203+
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '22.1'
195204
```
196205

197206
## Getting Started

Sources/AsposeWordsCloud/Api/ApiInvoker.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiInvoker.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/BatchRequest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="WordsBatchRequest.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/Configuration.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="Configuration.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -130,6 +130,6 @@ public class Configuration : Codable {
130130

131131
// Returns SDK version for using in statistics headers
132132
public func getSdkVersion() -> String {
133-
return "21.12";
133+
return "22.1";
134134
}
135135
}

Sources/AsposeWordsCloud/Api/ObjectSerializer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ObjectSerializer.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/RequestFormParam.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="RequestFormParam.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/ResponseFormParam.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ResponseFormParam.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/WordsAPI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="WordsAPI.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

Sources/AsposeWordsCloud/Api/WordsApiError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="WordsApiError.swift">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)