From 2c6ce49bc7e3a07c2c901c1e2f018afec2fb6a53 Mon Sep 17 00:00:00 2001 From: Francesco Bigiarini Date: Wed, 26 Jun 2024 10:25:11 +0200 Subject: [PATCH] Changelog and readme.txt edits. (#38055) --- projects/plugins/wpcomsh/CHANGELOG.md | 4 ++++ .../wpcomsh/changelog/add-get_magic_quotes_gpc-polyfill | 4 ---- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 projects/plugins/wpcomsh/changelog/add-get_magic_quotes_gpc-polyfill diff --git a/projects/plugins/wpcomsh/CHANGELOG.md b/projects/plugins/wpcomsh/CHANGELOG.md index ff61d0713c560..bfee3f17b6116 100644 --- a/projects/plugins/wpcomsh/CHANGELOG.md +++ b/projects/plugins/wpcomsh/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.26.0 - 2024-06-26 +### Added +- Added polyfill for get_magic_quotes_gpc [#38039] + ## 3.25.2 - 2024-06-26 ### Changed - Internal updates. diff --git a/projects/plugins/wpcomsh/changelog/add-get_magic_quotes_gpc-polyfill b/projects/plugins/wpcomsh/changelog/add-get_magic_quotes_gpc-polyfill deleted file mode 100644 index 274030ad7ec56..0000000000000 --- a/projects/plugins/wpcomsh/changelog/add-get_magic_quotes_gpc-polyfill +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Added polyfill for get_magic_quotes_gpc diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 048eb3ab3fa4f..a275c387c1f9b 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -130,7 +130,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_26_0_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_26_0" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 73e753ec6684f..068d695b30ae8 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "3.26.0-alpha", + "version": "3.26.0", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index 9f32eac57cfa6..bd60926f42e35 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,7 +2,7 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 3.26.0-alpha + * Version: 3.26.0 * Author: Automattic * Author URI: http://automattic.com/ * @@ -10,7 +10,7 @@ */ // Increase version number if you change something in wpcomsh. -define( 'WPCOMSH_VERSION', '3.26.0-alpha' ); +define( 'WPCOMSH_VERSION', '3.26.0' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' );