Skip to content

Commit

Permalink
four-point package releases for videopress and my-jetpack
Browse files Browse the repository at this point in the history
  • Loading branch information
CGastrell authored and matticbot committed Oct 27, 2023
1 parent 5bdad1c commit 71e61ea
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
5 changes: 0 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.15.1] - 2023-10-26
### Changed
- Coming Soon feature: Be more defensive when checking for meta data. [#33769]

## [4.15.0] - 2023-10-16
### Added
- Launchpad: Add earn-newsletter checklist. [#33200]
Expand Down Expand Up @@ -403,7 +399,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Testing initial package release.

[4.15.1]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.15.0...v4.15.1
[4.15.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.14.0...v4.15.0
[4.14.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.13.0...v4.14.0
[4.13.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.12.0...v4.13.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-mu-wpcom",
"version": "4.15.1",
"version": "4.15.0",
"description": "Enhances your site with features powered by WordPress.com",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/class-jetpack-mu-wpcom.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class Jetpack_Mu_Wpcom {

const PACKAGE_VERSION = '4.15.1';
const PACKAGE_VERSION = '4.15.0';
const PKG_DIR = __DIR__ . '/../';

/**
Expand Down
3 changes: 1 addition & 2 deletions src/features/coming-soon/coming-soon.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,7 @@ function disable_coming_soon_on_privacy_change( $old_value, $value ) {
* @return bool whether an update occurred.
*/
function add_option_to_new_site( $blog_id, $user_id, $domain, $path, $network_id, $meta ) {
if ( isset( $meta['public'] )
&& 0 === $meta['public']
if ( 0 === $meta['public']
&& isset( $meta['options']['wpcom_public_coming_soon'] )
&& 1 === (int) $meta['options']['wpcom_public_coming_soon']
) {
Expand Down
2 changes: 1 addition & 1 deletion src/features/launchpad/class-launchpad-task-lists.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function register_task_list( $task_list = array() ) {
* @return bool True if successful, false if not.
*/
public function register_task( $task = array() ) {
if ( ! static::validate_task( $task ) ) {
if ( ! $this->validate_task( $task ) ) {
return false;
}
// TODO: Handle duplicate tasks
Expand Down

0 comments on commit 71e61ea

Please sign in to comment.