Skip to content

Commit 8757f38

Browse files
ivankamkinIvan KamkinDenis-Averin
authored
Release 24.12 (#44)
* Version updated * Update version of lints package * Fix linter warnings --------- Co-authored-by: Ivan Kamkin <[email protected]> Co-authored-by: Denis Averin <[email protected]>
1 parent f03c433 commit 8757f38

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 1.24.12
4+
5+
* December 2024 Release
6+
7+
* The last major and minor version for [Aspose.BarCode.Cloud v3.0 API](https://api.aspose.cloud/v3.0/barcode/swagger/spec)
8+
39
## 1.24.11
410

511
* November 2024 Release

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.PHONY: all
2-
all: test lint
2+
all: lint test
33

44
.PHONY: init
55
init:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Dart test](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart/actions/workflows/dart.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart/actions/workflows/dart.yml)
44

55
- API version: 3.0
6-
- SDK version: 1.24.11
6+
- SDK version: 1.24.12
77

88
This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily
99

@@ -34,7 +34,7 @@ Add this dependency to your *pubspec.yaml*:
3434

3535
```yaml
3636
dependencies:
37-
aspose_barcode_cloud: 1.24.11
37+
aspose_barcode_cloud: 1.24.12
3838
```
3939
4040
## Sample usage

lib/src/api_client.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'api_helper.dart';
1010
import 'auth/authentication.dart';
1111

1212
/// Current SDK Version
13-
const SDK_VERSION = "1.24.11";
13+
const SDK_VERSION = "1.24.12";
1414

1515
/// ApiClient is responsible for making HTTP requests to the API.
1616
class ApiClient {
@@ -268,7 +268,7 @@ class ApiClient {
268268
}
269269

270270
/// Invoke HTTP request
271-
/// We don't use a Map<String, String> for queryParams.
271+
/// We don't use a Map&lt;String, String&gt; for queryParams.
272272
/// If collectionFormat is 'multi' a key might appear multiple times.
273273
Future<Http.Response> invokeAPI(
274274
String path,

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: aspose_barcode_cloud
22
description: This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily
3-
version: 1.24.11
3+
version: 1.24.12
44
homepage: https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart
55

66
platforms:
@@ -17,5 +17,5 @@ dependencies:
1717
http: '>=0.13.0 <2.0.0'
1818

1919
dev_dependencies:
20-
lints: ^4.0.0
20+
lints: ^5.1.1
2121
test: ^1.25.1

0 commit comments

Comments
 (0)