Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
dynabic-billing-team committed May 17, 2024
2 parents 8f6acf9 + 9345bc1 commit bae9693
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## [24.5.0] - Aspose Words Cloud for Dart 24.5 Release Notes

- Added the support of multistorage operations. Saving a file as a result of an operation can be performed in a specific storage, when, used file path in the next format '@storage:path/to/file.doc'.


## [24.4.0] - Aspose Words Cloud for Dart 24.4 Release Notes

- Added the 'MergeWithNext' method to merge a section with the next one.
- Added the 'LockAspectRatio' propperty for DrawingObjectInsert and DrawingObjectUpdate methods.


## [24.3.0] - Aspose Words Cloud for Dart 24.3 Release Notes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add this dependency to your *pubspec.yaml*:

```yaml
dependencies:
aspose_words_cloud: 24.4.0
aspose_words_cloud: 24.5.0
```
## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion lib/src/api_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ class ApiClient {

var httpRequest = http.Request(requestData.method, Uri.parse(requestData.url));
httpRequest.headers['x-aspose-client'] = 'dart sdk';
httpRequest.headers['x-aspose-client-version'] = '24.4';
httpRequest.headers['x-aspose-client-version'] = '24.5';
httpRequest.headers['Authorization'] = await _getAuthToken();
httpRequest.headers.addAll(requestData.headers);

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: aspose_words_cloud
description: This package allows you to work with Aspose.Words Cloud REST APIs in your Dart applications quickly and easily, with zero initial cost.
version: 24.4.0
version: 24.5.0
homepage: https://github.com/aspose-words-cloud/aspose-words-cloud-dart

environment:
Expand Down
5 changes: 3 additions & 2 deletions test/mail_merge/execute_mail_merge_tests.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ class ExecuteMailMergeTests

final request = ExecuteMailMergeOnlineRequest(
requestTemplate,
requestData
requestData,
withRegions: true
);

await context.getApi().executeMailMergeOnline(request);
Expand All @@ -71,7 +72,7 @@ class ExecuteMailMergeTests
remoteFileName,
data: localDataFile,
folder: remoteDataFolder,
withRegions: false,
withRegions: true,
destFileName: context.baseTestOutPath + '/' + remoteFileName
);

Expand Down

0 comments on commit bae9693

Please sign in to comment.