Skip to content

Commit

Permalink
Version updated to 5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianBustamante committed Aug 8, 2024
1 parent 60bc877 commit 709c2bb
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion projects/plugins/wpcomsh/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"composer/installers": true,
"roots/wordpress-core-installer": true
},
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_3_0"
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_4_0_alpha"
},
"extra": {
"mirror-repo": "Automattic/wpcom-site-helper",
Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/wpcomsh/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "5.3.0",
"version": "5.4.0-alpha",
"bugs": {
"url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
/**
* Helper class for marketplace commands.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/

/**
* Helper class for marketplace commands.
* Helper class for generating WP CLI commands required to install marketplace product.
*/
class Marketplace_Command_Helper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Factory class to create a new instance of Marketplace_Product_Software and Marketplace_Product_Installer.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/
require_once __DIR__ . '/products/class-marketplace-product-software.php';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* This class is responsible for installing the marketplace software.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/
require_once __DIR__ . '/class-marketplace-software-factory.php';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Class that allows to install a marketplace plugin.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Abstract class that allows to install a marketplace product.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Class that allows to install a marketplace theme.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php // phpcs:ignore Squiz.Commenting.FileComment.Missing
/**
* Class that allows to install a marketplace plugin..
* Class that contains all the data required to install a plugin.
*
* @since 5.2.0
* @package WPCOM_Marketplace
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php // phpcs:ignore Squiz.Commenting.FileComment.Missing
/**
* Class that allows to install a marketplace theme.
* Class that contains all the data required to install a theme.
*
* @since 5.2.0
* @since 5.4.0
* @package WPCOM_Marketplace
*/

Expand Down
4 changes: 2 additions & 2 deletions projects/plugins/wpcomsh/wpcomsh.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Plugin Name: WordPress.com Site Helper
* Description: A helper for connecting WordPress.com sites to external host infrastructure.
* Version: 5.3.0
* Version: 5.4.0-alpha
* Author: Automattic
* Author URI: http://automattic.com/
*
* @package wpcomsh
*/

define( 'WPCOMSH_VERSION', '5.3.0' );
define( 'WPCOMSH_VERSION', '5.4.0-alpha' );

// If true, Typekit fonts will be available in addition to Google fonts
add_filter( 'jetpack_fonts_enable_typekit', '__return_true' );
Expand Down

0 comments on commit 709c2bb

Please sign in to comment.