diff --git a/CHANGELOG.md b/CHANGELOG.md index 532f9ea..bd559e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 1.24.12 + +* December 2024 Release + +* The last major and minor version for [Aspose.BarCode.Cloud v3.0 API](https://api.aspose.cloud/v3.0/barcode/swagger/spec) + ## 1.24.11 * November 2024 Release diff --git a/Makefile b/Makefile index b751adb..134bc9a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .PHONY: all -all: test lint +all: lint test .PHONY: init init: diff --git a/README.md b/README.md index f06e113..392b40c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![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) - API version: 3.0 -- SDK version: 1.24.11 +- SDK version: 1.24.12 This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily @@ -34,7 +34,7 @@ Add this dependency to your *pubspec.yaml*: ```yaml dependencies: - aspose_barcode_cloud: 1.24.11 + aspose_barcode_cloud: 1.24.12 ``` ## Sample usage diff --git a/lib/src/api_client.dart b/lib/src/api_client.dart index 69d85b1..ee3d709 100644 --- a/lib/src/api_client.dart +++ b/lib/src/api_client.dart @@ -10,7 +10,7 @@ import 'api_helper.dart'; import 'auth/authentication.dart'; /// Current SDK Version -const SDK_VERSION = "1.24.11"; +const SDK_VERSION = "1.24.12"; /// ApiClient is responsible for making HTTP requests to the API. class ApiClient { @@ -268,7 +268,7 @@ class ApiClient { } /// Invoke HTTP request - /// We don't use a Map for queryParams. + /// We don't use a Map<String, String> for queryParams. /// If collectionFormat is 'multi' a key might appear multiple times. Future invokeAPI( String path, diff --git a/pubspec.yaml b/pubspec.yaml index 2141ff0..322dbd4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: aspose_barcode_cloud description: This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily -version: 1.24.11 +version: 1.24.12 homepage: https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dart platforms: @@ -17,5 +17,5 @@ dependencies: http: '>=0.13.0 <2.0.0' dev_dependencies: - lints: ^4.0.0 + lints: ^5.1.1 test: ^1.25.1