Skip to content

Commit ef1138d

Browse files
committed
v4.1.3
1 parent 88b9fab commit ef1138d

File tree

8 files changed

+221
-11
lines changed

8 files changed

+221
-11
lines changed

Diff for: .flutter-plugins-dependencies

+1-1
Large diffs are not rendered by default.

Diff for: .github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
run: flutter analyze
2626

2727
- name: Format code
28-
run: dart format --fix .
28+
run: dart format .
2929

3030
- name: Check publish warnings
31-
run: dart pub publish --dry-run
31+
run: flutter pub publish --dry-run
3232

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

Diff for: .idea/caches/deviceStreaming.xml

+206
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/libraries/Flutter_Plugins.xml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [4.1.3] - 2025-02-27
2+
3+
* Pubspec.yaml dependency updates.
4+
15
## [4.1.2] - 2025-02-07
26

37
* Pubspec.yaml dependency updates.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In your flutter project add the dependency:
1515
``` dart
1616
dependencies:
1717
...
18-
woosignal: ^4.1.2
18+
woosignal: ^4.1.3
1919
```
2020

2121
### Usage example #

Diff for: lib/woosignal.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import 'package:encrypt/encrypt.dart' as enc;
5858
import 'package:encrypt/encrypt.dart';
5959

6060
/// WooSignal Package version
61-
const String _wooSignalVersion = "4.1.2";
61+
const String _wooSignalVersion = "4.1.3";
6262

6363
class WooSignal {
6464
WooSignal._privateConstructor();

Diff for: pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: woosignal
22
description: WooCommerce REST API for dart, connect a WooCommerce store and start developing with our interface for their API endpoints.
3-
version: 4.1.2
3+
version: 4.1.3
44
homepage: https://woosignal.com
55
repository: https://github.com/woosignal/flutter-woocommerce-api
66
issue_tracker: https://github.com/woosignal/flutter-woocommerce-api/issues
@@ -11,7 +11,7 @@ environment:
1111

1212
dependencies:
1313
dio: ^5.8.0+1
14-
device_meta: ^2.1.2
14+
device_meta: ^2.1.3
1515
encrypt: ^5.0.3
1616

1717
flutter:

0 commit comments

Comments
 (0)