Skip to content

Commit

Permalink
Merge pull request #558 from WordPress/prepare/1.6.0
Browse files Browse the repository at this point in the history
Prepare 1.6.0 release
  • Loading branch information
felixarntz authored Oct 17, 2022
2 parents 55213ba + 9caf389 commit 9ea040d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
4 changes: 2 additions & 2 deletions load.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance modules.
* Requires at least: 6.0
* Requires PHP: 5.6
* Version: 1.5.0
* Version: 1.6.0
* Author: WordPress Performance Team
* Author URI: https://make.wordpress.org/performance/
* License: GPLv2 or later
Expand All @@ -15,7 +15,7 @@
* @package performance-lab
*/

define( 'PERFLAB_VERSION', '1.5.0' );
define( 'PERFLAB_VERSION', '1.6.0' );
define( 'PERFLAB_MAIN_FILE', __FILE__ );
define( 'PERFLAB_PLUGIN_DIR_PATH', plugin_dir_path( PERFLAB_MAIN_FILE ) );
define( 'PERFLAB_MODULES_SETTING', 'perflab_modules_settings' );
Expand Down
10 changes: 5 additions & 5 deletions modules/images/webp-uploads/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
* Settings for the WebP Uploads module.
*
* @package performance-lab
* @since n.e.x.t
* @since 1.6.0
*/

/**
* Registers setting for generating both JPEG and WebP versions for image uploads.
*
* @since n.e.x.t
* @since 1.6.0
*/
function webp_uploads_register_media_settings_field() {
register_setting(
Expand All @@ -27,7 +27,7 @@ function webp_uploads_register_media_settings_field() {
/**
* Adds media settings field for the 'perflab_generate_webp_and_jpeg' setting.
*
* @since n.e.x.t
* @since 1.6.0
*/
function webp_uploads_add_media_settings_field() {
// Add settings field.
Expand All @@ -45,7 +45,7 @@ function webp_uploads_add_media_settings_field() {
/**
* Renders the settings field for the 'perflab_generate_webp_and_jpeg' setting.
*
* @since n.e.x.t
* @since 1.6.0
*/
function webp_uploads_generate_webp_jpeg_setting_callback() {
?>
Expand All @@ -62,7 +62,7 @@ function webp_uploads_generate_webp_jpeg_setting_callback() {
/**
* Adds custom style for media settings.
*
* @since n.e.x.t
* @since 1.6.0
*/
function webp_uploads_media_setting_style() {
?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Can load function to determine if Persistent Object Cache Health Check module is already merged in WordPress core.
*
* @since n.e.x.t
* @since 1.6.0
* @package performance-lab
*/

/**
* Checks whether the given module is already merged into the WordPress core.
*
* @since n.e.x.t
* @since 1.6.0
*
* @global string $wp_version The WordPress version string.
*/
Expand Down
4 changes: 2 additions & 2 deletions modules/site-health/audit-full-page-cache/can-load.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Can load function to determine if Full Page Cache Health Check module is already merged in WordPress core.
*
* @since n.e.x.t
* @since 1.6.0
* @package performance-lab
*/

/**
* Checks whether the given module is already merged into the WordPress core.
*
* @since n.e.x.t
* @since 1.6.0
*
* @global string $wp_version The WordPress version string.
*/
Expand Down
13 changes: 11 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Contributors: wordpressdotorg
Requires at least: 6.0
Tested up to: 6.0
Tested up to: 6.1
Requires PHP: 5.6
Stable tag: 1.5.0
Stable tag: 1.6.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: performance, images, javascript, site health, measurement, object caching
Expand Down Expand Up @@ -68,6 +68,15 @@ Contributions welcome! There are several ways to contribute:

== Changelog ==

= 1.6.0 =

**Enhancements**

* Site Health: Only load Site Health checks for persistent cache and full page cache when not available in core. ([543](https://github.com/WordPress/performance/pull/543))
* Images: Add checkbox to Settings > Media to control whether to generate JPEG in addition to WebP. ([537](https://github.com/WordPress/performance/pull/537))
* Images: Generate only WebP images by default for JPEG and WebP uploads. ([527](https://github.com/WordPress/performance/pull/527))
* Infrastructure: Bump minimum WordPress requirement to 6.0. ([549](https://github.com/WordPress/performance/pull/549))

= 1.5.0 =

**Enhancements**
Expand Down

0 comments on commit 9ea040d

Please sign in to comment.