diff --git a/CHANGELOG.md b/CHANGELOG.md index a79e351..42d14b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [3.5.11] - 2024-06-21 + +* Readme update +* Dependency updates + ## [3.5.10] - 2024-06-15 * Dependency updates diff --git a/README.md b/README.md index 092bb03..a736b33 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # WordPress and WooCommerce JSON API Dart package for Flutter -[Official WooSignal package](https://woosignal.com) +You can download the WordPress plugin here [WP JSON API](https://woosignal.gumroad.com/l/wp-json-api). + +Install the WordPress plugin to use this Flutter package. ## API features: @@ -28,7 +30,7 @@ In your flutter project add the dependency: ``` dart dependencies: ... - wp_json_api: ^3.5.10 + wp_json_api: ^3.5.11 ``` ### Usage example # diff --git a/example/pubspec.lock b/example/pubspec.lock index 9d78277..24b37ff 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -69,10 +69,10 @@ packages: dependency: transitive description: name: error_stack - sha256: cb189baf478bb896f204485fe6633728eacde26aa944ba9744e501f8a84901a4 + sha256: "4a42065d1b3e82e60754ce2e4c462a558d376d6c584c45a7f56c5ab88c896ec9" url: "https://pub.dev" source: hosted - version: "1.7.1" + version: "1.7.3" fake_async: dependency: transitive description: @@ -273,10 +273,10 @@ packages: dependency: transitive description: name: nylo_support - sha256: "1d7202461d501031491b1a614bce288ab8becf72d52c8ab9a47e8096dbfc12ba" + sha256: "56d7f9f598715320a2ff95050b0d138b9bd0b108d3eb549160869ec64ac609ed" url: "https://pub.dev" source: hosted - version: "5.75.3" + version: "5.76.0" page_transition: dependency: transitive description: @@ -632,7 +632,7 @@ packages: path: ".." relative: true source: path - version: "3.5.10" + version: "3.5.11" xdg_directories: dependency: transitive description: diff --git a/lib/wp_json_api.dart b/lib/wp_json_api.dart index d58ddab..4123711 100644 --- a/lib/wp_json_api.dart +++ b/lib/wp_json_api.dart @@ -22,7 +22,7 @@ import '/models/wp_user.dart'; import '/networking/network_manager.dart'; /// The version of the wp_json_api -String _wpJsonAPIVersion = "3.5.10"; +String _wpJsonAPIVersion = "3.5.11"; /// The base class to initialize and use WPJsonAPI class WPJsonAPI { diff --git a/pubspec.lock b/pubspec.lock index 2d6686b..7b32a7f 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -69,10 +69,10 @@ packages: dependency: transitive description: name: error_stack - sha256: cb189baf478bb896f204485fe6633728eacde26aa944ba9744e501f8a84901a4 + sha256: "4a42065d1b3e82e60754ce2e4c462a558d376d6c584c45a7f56c5ab88c896ec9" url: "https://pub.dev" source: hosted - version: "1.7.1" + version: "1.7.3" fake_async: dependency: transitive description: @@ -273,10 +273,10 @@ packages: dependency: "direct main" description: name: nylo_support - sha256: "1d7202461d501031491b1a614bce288ab8becf72d52c8ab9a47e8096dbfc12ba" + sha256: "56d7f9f598715320a2ff95050b0d138b9bd0b108d3eb549160869ec64ac609ed" url: "https://pub.dev" source: hosted - version: "5.75.3" + version: "5.76.0" page_transition: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 4b197d0..7bad9b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: wp_json_api description: WordPress and WooCommerce JSON API for Flutter Mobile. API allows you to login, register new users, get users info and more. -version: 3.5.10 +version: 3.5.11 homepage: https://woosignal.com repository: https://github.com/woosignal/wp-json-api-flutter issue_tracker: https://github.com/woosignal/wp-json-api-flutter/issues @@ -12,7 +12,7 @@ environment: dependencies: dio: ^5.4.3+1 - nylo_support: ^5.75.3 + nylo_support: ^5.76.0 flutter: sdk: flutter collection: ^1.17.0