From 60cdf4efc577c66e2eedadf5d15c44f4e6fcdcb4 Mon Sep 17 00:00:00 2001 From: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> Date: Sat, 21 Dec 2024 12:26:02 +0500 Subject: [PATCH 1/3] Version updated --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- lib/src/api_client.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) 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/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..d2ba6e7 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 { diff --git a/pubspec.yaml b/pubspec.yaml index 2141ff0..c996e81 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: From 14b5d6eecbd3f4d156c21d5b790a58f04c1035fc Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Tue, 24 Dec 2024 11:54:26 +0700 Subject: [PATCH 2/3] Update version of lints package --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c996e81..322dbd4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 From 04309c681ba4e7738fed4c3191554efa00f9107d Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Tue, 24 Dec 2024 12:02:51 +0700 Subject: [PATCH 3/3] Fix linter warnings --- Makefile | 2 +- lib/src/api_client.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/lib/src/api_client.dart b/lib/src/api_client.dart index d2ba6e7..ee3d709 100644 --- a/lib/src/api_client.dart +++ b/lib/src/api_client.dart @@ -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,