Skip to content

Commit a4d2dcd

Browse files
authored
Update version to 1.24.13 (#52)
* Update version to 1.24.13 * Change action branches from `main` to `v1` * Add version to CHANGELOG.md * Update `lints` package version to 6.0.0
1 parent ca27704 commit a4d2dcd

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.github/workflows/check-badges.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Check badges in README.md
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ v1 ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ v1 ]
88

99
jobs:
1010
build-and-test:

.github/workflows/dart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: "Dart test"
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ v1 ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ v1 ]
88

99
jobs:
1010
build:

CHANGELOG.md

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

3+
## 1.24.13
4+
5+
* May 2025 Release
6+
37
## 1.24.12
48

59
* December 2024 Release

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.12
6+
- SDK version: 1.24.13
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.12
37+
aspose_barcode_cloud: 1.24.13
3838
```
3939
4040
## Sample usage

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
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.12";
13+
const SDK_VERSION = "1.24.13";
1414

1515
/// ApiClient is responsible for making HTTP requests to the API.
1616
class ApiClient {

lib/src/configuration.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class Configuration {
7575
}
7676

7777
/// Load configuration from environment variables
78-
static fromEnv({String prefix = ""}) {
78+
static Configuration fromEnv({String prefix = ""}) {
7979
final accessToken = Platform.environment["${prefix}ACCESS_TOKEN"];
8080
return Configuration(
8181
accessToken: accessToken,

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.12
3+
version: 1.24.13
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: ^5.1.1
20+
lints: ^6.0.0
2121
test: ^1.25.1

0 commit comments

Comments
 (0)