Skip to content

Commit 72766c4

Browse files
zinigormatticbot
authored andcommitted
Updated package versions for automattic/jetpack-mu-wpcom-plugin
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6239495057
1 parent 64b8356 commit 72766c4

File tree

13 files changed

+77
-120
lines changed

13 files changed

+77
-120
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 1.6.20-alpha - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
8+
## 1.6.20 - 2023-09-19
119

1210
## 1.6.19 - 2023-09-11
1311
### Changed

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0-or-later",
66
"require": {
7-
"automattic/jetpack-mu-wpcom": "^4.10.0-alpha"
7+
"automattic/jetpack-mu-wpcom": "^4.10.0"
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "1.1.0",
11-
"automattic/jetpack-changelogger": "^3.3.9-alpha"
11+
"automattic/jetpack-changelogger": "^3.3.9"
1212
},
1313
"autoload": {
1414
"classmap": [
@@ -23,6 +23,7 @@
2323
"@composer phpunit"
2424
]
2525
},
26+
"repositories": [],
2627
"minimum-stability": "dev",
2728
"prefer-stable": true,
2829
"extra": {
@@ -37,6 +38,6 @@
3738
]
3839
},
3940
"config": {
40-
"autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha"
41+
"autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20"
4142
}
4243
}

composer.lock

Lines changed: 35 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mu-wpcom-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Plugin Name: WordPress.com Features
55
* Description: Test plugin for the jetpack-mu-wpcom package
6-
* Version: 1.6.20-alpha
6+
* Version: 1.6.20
77
* Author: Automattic
88
* License: GPLv2 or later
99
* Text Domain: jetpack-mu-wpcom-plugin

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@automattic/jetpack-mu-wpcom-plugin",
4-
"version": "1.6.20-alpha",
4+
"version": "1.6.20",
55
"description": "Test plugin for the jetpack-mu-wpcom package",
66
"homepage": "https://jetpack.com",
77
"bugs": {

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha::getLoader();
25+
return ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20::getLoader();

vendor/automattic/jetpack-mu-wpcom/CHANGELOG.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [4.10.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [4.10.0] - 2023-09-19
129
### Added
13-
- Add removal capability for navigator available checklists
14-
- add updating capabilities for current checklist
15-
- Change the Site Editor's dashboard link
16-
- Change the way the navigator checklists are handled
10+
- Add removal capability for navigator available checklists [#33019]
11+
- add updating capabilities for current checklist [#32964]
12+
- Change the Site Editor's dashboard link [#33024]
13+
- Change the way the navigator checklists are handled [#33011]
1714

1815
### Fixed
19-
- Make map block settings load after registering the script
16+
- Make map block settings load after registering the script [#33066]
2017

2118
## [4.9.0] - 2023-09-11
2219
### Added
@@ -362,7 +359,7 @@ This is an alpha version! The changes listed here are not final.
362359

363360
- Testing initial package release.
364361

365-
[4.10.0-alpha]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.9.0...v4.10.0-alpha
362+
[4.10.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.9.0...v4.10.0
366363
[4.9.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.8.0...v4.9.0
367364
[4.8.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.7.0...v4.8.0
368365
[4.7.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v4.6.0...v4.7.0

vendor/automattic/jetpack-mu-wpcom/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"require": {},
77
"require-dev": {
88
"yoast/phpunit-polyfills": "1.1.0",
9-
"automattic/jetpack-changelogger": "^3.3.9-alpha",
9+
"automattic/jetpack-changelogger": "^3.3.9",
1010
"automattic/wordbless": "0.4.2"
1111
},
1212
"suggest": {

vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class Jetpack_Mu_Wpcom {
1616

17-
const PACKAGE_VERSION = '4.10.0-alpha';
17+
const PACKAGE_VERSION = '4.10.0';
1818
const PKG_DIR = __DIR__ . '/../';
1919

2020
/**

vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha
5+
class ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20
66
{
77
private static $loader;
88

@@ -22,12 +22,12 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27-
spl_autoload_unregister(array('ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20', 'loadClassLoader'));
2828

2929
require __DIR__ . '/autoload_static.php';
30-
call_user_func(\Composer\Autoload\ComposerStaticInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20_alpha::getInitializer($loader));
30+
call_user_func(\Composer\Autoload\ComposerStaticInitd9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ1_6_20::getInitializer($loader));
3131

3232
$loader->setClassMapAuthoritative(true);
3333
$loader->register(true);

0 commit comments

Comments
 (0)