@wordpress/create-block-tutorial-template 2.20.0 → 2.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.21.0 (2023-05-10)
6
+
5
7
  ## 2.20.0 (2023-04-26)
6
8
 
7
9
  ## 2.19.0 (2023-04-12)
@@ -1,4 +1,9 @@
1
1
  {{#isDynamicVariant}}
2
+ <?php
3
+ /**
4
+ * @see https://github.com/WordPress/gutenberg/blob/trunk/docs/reference-guides/block-api/block-metadata.md#render
5
+ */
6
+ ?>
2
7
  <p <?php echo get_block_wrapper_attributes(); ?>>
3
8
  <?php echo esc_html( $attributes['message'] ); ?>
4
9
  </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/create-block-tutorial-template",
3
- "version": "2.20.0",
3
+ "version": "2.21.0",
4
4
  "description": "Template for @wordpress/create-block used in the official WordPress tutorial.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -21,5 +21,5 @@
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "gitHead": "6df0c62d43b8901414ccd22ffbe56eaa99d012a6"
24
+ "gitHead": "e936127e1e13881f1a940b7bd1593a9e500147f3"
25
25
  }