Skip to content

Commit 7d5f1b1

Browse files
authored
Merge branch 'trunk' into remove/pattern-management
2 parents 10dbe40 + b9e0228 commit 7d5f1b1

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ build/
3535

3636
# phpunit
3737
*.result.*
38+
39+
dev-env/

.wp-env.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
"plugins": [ "." ],
77
"config": {
88
"WP_UPLOAD_MAX_FILESIZE": "128M",
9-
"WP_MEMORY_LIMIT": "256M"
9+
"WP_MEMORY_LIMIT": "256M",
10+
"WP_ENVIRONMENT_TYPE": "development",
11+
"WP_DEVELOPMENT_MODE": "all"
12+
},
13+
"mappings": {
14+
"wp-content/themes": "./dev-env/themes"
1015
},
1116
"env": {
1217
"development": {

create-block-theme.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin Name: Create Block Theme
66
* Plugin URI: https://wordpress.org/plugins/create-block-theme
77
* Description: Generates a block theme
8-
* Version: 2.6.0
8+
* Version: 2.7.0
99
* Author: WordPress.org
1010
* Author URI: https://wordpress.org/
1111
* License: GNU General Public License v2 or later

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-block-theme",
3-
"version": "2.6.0",
3+
"version": "2.7.0",
44
"private": true,
55
"description": "Create a block-based theme",
66
"author": "The WordPress Contributors",

readme.txt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: wordpressdotorg, mikachan, onemaggie, pbking, scruffian, mmaattiiaass, jffng, madhudollu, egregor, vcanales, jeffikus, cwhitmore
33
Tags: themes, theme, block-theme
44
Requires at least: 6.6
5-
Tested up to: 6.7
6-
Stable tag: 2.6.0
5+
Tested up to: 6.8
6+
Stable tag: 2.7.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -125,6 +125,17 @@ If you are having problems, please try the following:
125125

126126
== Changelog ==
127127

128+
= 2.7.0 =
129+
* Update "Tested up to" version to 6.8 (#768)
130+
* Update wp-env configuration to use 'development mode' and to store themes in an accessible place for development (#764)
131+
* Code Quality: fix browser deprecation warning (#762)
132+
* PHPCS: Remove unused files and adjust release files (#754)
133+
* GitHub Actions: Install Subversion (#761)
134+
* Polish plugin sidebar buttons (#755)
135+
* Clean up package.json and update @wordpress/env (#753)
136+
* Tested up to: 6.7 (#751)
137+
* Add figcaption escaping for image and video blocks (#745)
138+
128139
= 2.6.0 =
129140
* Process inner html of blocks when escaping text content (#719)
130141
* Removed all of the code relating to 'folder management' of a theme. (#723)

0 commit comments

Comments
 (0)