Skip to content

Commit 60e7731

Browse files
committed
v3.4.0 updates
1 parent 0e48207 commit 60e7731

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## [3.4.0] - 2023-05-18
22

33
* Add new attributes to `Product` class
4+
* Pubspec.yaml dependency updates.
45

56
* ## [3.3.0] - 2023-03-04
67

lib/networking/api_provider.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ApiProvider {
4949
_deviceMeta = {
5050
"model": iosDeviceInfo.model,
5151
"brand":
52-
iosDeviceInfo.name?.replaceAll(RegExp('[^\u0001-\u007F]'), '_'),
52+
iosDeviceInfo.name.replaceAll(RegExp('[^\u0001-\u007F]'), '_'),
5353
"manufacturer": "Apple",
5454
"version": iosDeviceInfo.systemVersion,
5555
"uuid": uuid,

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ issue_tracker: https://github.com/woosignal/flutter-woocommerce-api/issues
77
documentation: https://woosignal.com/docs/api/1.0/overview
88

99
environment:
10-
sdk: '>=2.19.0 <3.0.0'
10+
sdk: '>=2.19.0 <4.0.0'
1111

1212
dependencies:
1313
dio: ^5.1.2

0 commit comments

Comments
 (0)