From ce82a56fab074c9d1136c80fa79588f3a2b13f29 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 21 Mar 2024 21:22:00 +0700 Subject: [PATCH] v3.5.1 --- CHANGELOG.md | 4 ++++ README.md | 2 +- example/pubspec.lock | 10 +++++----- lib/wp_json_api.dart | 2 +- pubspec.lock | 8 ++++---- pubspec.yaml | 4 ++-- 6 files changed, 17 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e1c88..d0c393e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [3.5.1] - 2024-03-21 + +* Dependency updates + ## [3.5.0] - 2024-03-18 * Breaking change `WPJsonAPI.initWith` is now `WPJsonAPI.init` diff --git a/README.md b/README.md index bf976c9..acc1b69 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ In your flutter project add the dependency: ``` dart dependencies: ... - wp_json_api: ^3.5.0 + wp_json_api: ^3.5.1 ``` ### Usage example # diff --git a/example/pubspec.lock b/example/pubspec.lock index 9c33896..6a503f0 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -265,10 +265,10 @@ packages: dependency: transitive description: name: nylo_support - sha256: "2927b62a1dfbed8e85847e9460d0b8bcca3ec61b4d72318f3835dbbad6980fb0" + sha256: "0b933c275855582f4dcd36a87a3a2b7084a261104d3bb3035e787ed6e945ec77" url: "https://pub.dev" source: hosted - version: "5.56.1" + version: "5.57.0" page_transition: dependency: transitive description: @@ -441,10 +441,10 @@ packages: dependency: transitive description: name: skeletonizer - sha256: "2eb80153c80507359ff05f6a18ed50ae0bafa1b999aa867a8cef0a53387b5650" + sha256: "9a3ae2f4ee4349bdbed3292d04586a1315a44745d2c454684f82f0c46dbeabf9" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.1" sky_engine: dependency: transitive description: flutter @@ -560,7 +560,7 @@ packages: path: ".." relative: true source: path - version: "3.5.0" + version: "3.5.1" xdg_directories: dependency: transitive description: diff --git a/lib/wp_json_api.dart b/lib/wp_json_api.dart index fa0288a..9044787 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.0"; +String _wpJsonAPIVersion = "3.5.1"; /// The base class to initialize and use WPJsonAPI class WPJsonAPI { diff --git a/pubspec.lock b/pubspec.lock index 233a244..f55f439 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -265,10 +265,10 @@ packages: dependency: "direct main" description: name: nylo_support - sha256: "2927b62a1dfbed8e85847e9460d0b8bcca3ec61b4d72318f3835dbbad6980fb0" + sha256: "0b933c275855582f4dcd36a87a3a2b7084a261104d3bb3035e787ed6e945ec77" url: "https://pub.dev" source: hosted - version: "5.56.1" + version: "5.57.0" page_transition: dependency: transitive description: @@ -441,10 +441,10 @@ packages: dependency: transitive description: name: skeletonizer - sha256: "2eb80153c80507359ff05f6a18ed50ae0bafa1b999aa867a8cef0a53387b5650" + sha256: "9a3ae2f4ee4349bdbed3292d04586a1315a44745d2c454684f82f0c46dbeabf9" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.1" sky_engine: dependency: transitive description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index d8ad411..d44398e 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.0 +version: 3.5.1 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.1 - nylo_support: ^5.56.1 + nylo_support: ^5.57.0 flutter: sdk: flutter collection: ^1.17.0