Skip to content

Commit 4fdeac4

Browse files
committed
v4.2.2
1 parent 406dbed commit 4fdeac4

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
run: flutter analyze
2828

2929
- name: Format code
30-
run: dart format --fix .
30+
run: dart format .
3131

3232
- name: Check publish warnings
33-
run: dart pub publish --dry-run
33+
run: flutter pub publish --dry-run
3434

3535
- name: Publish package
36-
uses: k-paxian/dart-package-publisher@v1.5.1
36+
uses: k-paxian/dart-package-publisher@master
3737
with:
38-
credentialJson: ${{ secrets.CREDENTIAL_SECRET }}
38+
credentialJson: ${{ secrets.CREDENTIAL_SECRET }}
3939
flutter: true
4040
skipTests: true

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [4.2.2] - 2025-02-27
2+
3+
* Dependency updates
4+
15
## [4.2.2] - 2025-02-07
26

37
* Dependency updates

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In your flutter project add the dependency:
3030
``` dart
3131
dependencies:
3232
...
33-
wp_json_api: ^4.2.2
33+
wp_json_api: ^4.2.3
3434
```
3535

3636
### Usage example #

lib/wp_json_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import '/models/wp_user.dart';
2323
import '/networking/network_manager.dart';
2424

2525
/// The version of the wp_json_api
26-
String _wpJsonAPIVersion = "4.2.2";
26+
String _wpJsonAPIVersion = "4.2.3";
2727

2828
/// The base class to initialize and use WPJsonAPI
2929
class WPJsonAPI {

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: wp_json_api
22
description: WordPress and WooCommerce JSON API for Flutter Mobile. API allows you to login, register new users, get users info and more.
3-
version: 4.2.2
3+
version: 4.2.3
44
homepage: https://woosignal.com
55
repository: https://github.com/woosignal/wp-json-api-flutter
66
issue_tracker: https://github.com/woosignal/wp-json-api-flutter/issues
@@ -12,7 +12,7 @@ environment:
1212

1313
dependencies:
1414
dio: ^5.8.0+1
15-
nylo_support: ^6.19.1
15+
nylo_support: ^6.20.0
1616
flutter:
1717
sdk: flutter
1818
collection: ^1.17.0

0 commit comments

Comments
 (0)