diff --git a/README.md b/README.md index ab483cca8..64ed7d9db 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ WordPress feature plugin to bring Progressive Web App (PWA) capabilities to Core **Contributors:** [google](https://profiles.wordpress.org/google), [xwp](https://profiles.wordpress.org/xwp), [rtcamp](https://profiles.wordpress.org/rtcamp), [westonruter](https://profiles.wordpress.org/westonruter), [albertomedina](https://profiles.wordpress.org/albertomedina) **Tags:** [pwa](https://wordpress.org/plugins/tags/pwa), [progressive web apps](https://wordpress.org/plugins/tags/progressive-web-apps), [service workers](https://wordpress.org/plugins/tags/service-workers), [web app manifest](https://wordpress.org/plugins/tags/web-app-manifest) **Tested up to:** 6.7 -**Stable tag:** 0.8.1 +**Stable tag:** 0.8.2 **License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) [![Build Status](https://github.com/GoogleChromeLabs/pwa-wp/workflows/Build,%20test%20&%20measure/badge.svg)](https://github.com/GoogleChromeLabs/pwa-wp/actions?query=branch%3Adevelop+workflow%3A%22Build%2C+test+%26+measure%22) diff --git a/pwa.php b/pwa.php index c8acda092..4f6efffac 100644 --- a/pwa.php +++ b/pwa.php @@ -11,7 +11,7 @@ * Description: Feature plugin to bring Progressive Web App (PWA) capabilities to Core * Requires at least: 6.6 * Requires PHP: 7.2 - * Version: 0.8.2-alpha + * Version: 0.8.2 * Author: PWA Plugin Contributors * Author URI: https://github.com/GoogleChromeLabs/pwa-wp/graphs/contributors * Text Domain: pwa @@ -19,7 +19,7 @@ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt */ -define( 'PWA_VERSION', '0.8.2-alpha' ); +define( 'PWA_VERSION', '0.8.2' ); define( 'PWA_PLUGIN_FILE', __FILE__ ); define( 'PWA_PLUGIN_DIR', __DIR__ ); define( 'PWA_WORKBOX_VERSION', json_decode( file_get_contents( PWA_PLUGIN_DIR . '/package.json' ), true )['devDependencies']['workbox-cli'] ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents,PHPCompatibility.Syntax.NewFunctionArrayDereferencing.Found -- Replaced with version literal build.