Skip to content

Commit 135cbe5

Browse files
gzioloMamaduka
authored andcommitted
Create Block: Set minimum supported WordPress version to 6.6 (WordPress#64920)
* Create Block: Set minimum supported WordPress version to 6.6 * Update changelog entries Co-authored-by: gziolo <[email protected]> Co-authored-by: Mamaduka <[email protected]>
1 parent e1fa8e2 commit 135cbe5

File tree

12 files changed

+21
-9
lines changed

12 files changed

+21
-9
lines changed

packages/create-block-interactive-template/CHANGELOG.md

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

33
## Unreleased
44

5+
### Enhancements
6+
7+
- Set the minimum supported WordPress version to 6.6 to make it work seamlessly with the latest version of `@wordpress/scripts` package ([#64920](https://github.com/WordPress/gutenberg/pull/64920)).
8+
59
## 2.6.0 (2024-08-21)
610

711
## 2.5.0 (2024-08-07)

packages/create-block-interactive-template/plugin-templates/$slug.php.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Description: {{description}}
99
{{/description}}
1010
* Version: {{version}}
11-
* Requires at least: 6.1
11+
* Requires at least: 6.6
1212
* Requires PHP: 7.0
1313
{{#author}}
1414
* Author: {{author}}

packages/create-block-interactive-template/plugin-templates/readme.txt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Contributors: {{author}}
44
{{/author}}
55
Tags: block
6-
Tested up to: 6.1
6+
Tested up to: 6.6
77
Stable tag: {{version}}
88
{{#license}}
99
License: {{license}}

packages/create-block-tutorial-template/CHANGELOG.md

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

33
## Unreleased
44

5+
### Enhancements
6+
7+
- Set the minimum supported WordPress version to 6.6 to make it work seamlessly with the latest version of `@wordpress/scripts` package ([#64920](https://github.com/WordPress/gutenberg/pull/64920)).
8+
59
## 4.6.0 (2024-08-21)
610

711
## 4.5.0 (2024-08-07)

packages/create-block-tutorial-template/plugin-templates/$slug.php.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Description: {{description}}
99
{{/description}}
1010
* Version: {{version}}
11-
* Requires at least: 6.2
11+
* Requires at least: 6.6
1212
* Requires PHP: 7.0
1313
{{#author}}
1414
* Author: {{author}}

packages/create-block-tutorial-template/plugin-templates/readme.txt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Contributors: {{author}}
44
{{/author}}
55
Tags: block
6-
Tested up to: 6.4
6+
Tested up to: 6.6
77
Stable tag: {{version}}
88
{{#license}}
99
License: {{license}}

packages/create-block/CHANGELOG.md

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

33
## Unreleased
44

5+
### Enhancements
6+
7+
- Unpin the `@wordpress/scripts` version and set the minimum supported WordPress version to 6.6 ([#64920](https://github.com/WordPress/gutenberg/pull/64920)).
8+
59
## 4.49.0 (2024-08-21)
610

711
## 4.48.0 (2024-08-07)

packages/create-block/lib/init-wp-scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = async ( { slug } ) => {
1616
info(
1717
'Installing `@wordpress/scripts` package. It might take a couple of minutes...'
1818
);
19-
await command( 'npm install @wordpress/scripts@27 --save-dev', {
19+
await command( 'npm install @wordpress/scripts --save-dev', {
2020
cwd,
2121
} );
2222

packages/create-block/lib/templates/es5/$slug.php.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{{#description}}
88
* Description: {{description}}
99
{{/description}}
10-
* Requires at least: 6.1
10+
* Requires at least: 6.6
1111
* Requires PHP: 7.0
1212
* Version: {{version}}
1313
{{#author}}

packages/create-block/lib/templates/es5/readme.txt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Contributors: {{author}}
44
{{/author}}
55
Tags: block
6-
Tested up to: 6.1
6+
Tested up to: 6.6
77
Stable tag: {{version}}
88
{{#license}}
99
License: {{license}}

0 commit comments

Comments
 (0)