@wordpress/create-block-tutorial-template 4.1.0 → 4.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -12
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.0 (2024-06-26)
6
+
5
7
  ## 4.1.0 (2024-06-15)
6
8
 
7
9
  ## 4.0.0 (2024-05-31)
@@ -36,7 +38,7 @@
36
38
 
37
39
  ## 3.0.0 (2023-11-16)
38
40
 
39
- ### Breaking Change
41
+ ### Breaking Changes
40
42
 
41
43
  - Update the block example scaffolded by the template.
42
44
 
@@ -90,7 +92,7 @@
90
92
 
91
93
  ## 2.9.0 (2022-11-02)
92
94
 
93
- ### Enhancement
95
+ ### Enhancements
94
96
 
95
97
  - Update templates to use the `render` field in `block.json` introduced in WordPress 6.1 ([#44185](https://github.com/WordPress/gutenberg/pull/44185)).
96
98
 
@@ -102,59 +104,59 @@
102
104
 
103
105
  ## 2.5.0 (2022-08-24)
104
106
 
105
- ### Enhancement
107
+ ### Enhancements
106
108
 
107
109
  - Add support to the `dynamic` variant ([#41289](https://github.com/WordPress/gutenberg/pull/41289), [#43481](https://github.com/WordPress/gutenberg/pull/43481)).
108
110
 
109
111
  ## 2.3.0 (2022-06-01)
110
112
 
111
- ### Enhancement
113
+ ### Enhancements
112
114
 
113
115
  - Read the block name from `block.json` file in JavaScript files ([#41273](https://github.com/WordPress/gutenberg/pull/41273)).
114
116
 
115
- ### Bug Fix
117
+ ### Bug Fixes
116
118
 
117
119
  - Fix the issue with the block wrapper in the editor ([#41273](https://github.com/WordPress/gutenberg/pull/41273)).
118
120
 
119
121
  ## 2.1.0 (2022-04-21)
120
122
 
121
- ### Bug Fix
123
+ ### Bug Fixes
122
124
 
123
125
  - Fix some CSS Coding Standards violations in file templates ([#40479](https://github.com/WordPress/gutenberg/pull/40479)).
124
126
 
125
127
  ## 2.0.0 (2022-03-03)
126
128
 
127
- ### Breaking Change
129
+ ### Breaking Changes
128
130
 
129
131
  - Bring project's template compatibility with `@wordpress/create-block` v3 ([#39049](https://github.com/WordPress/gutenberg/pull/39049)).
130
132
 
131
- ### Enhancement
133
+ ### Enhancements
132
134
 
133
135
  - Update project template configuration and templates to synchronize with the updated [Create a Block Tutorial](https://developer.wordpress.org/block-editor/getting-started/create-block/) ([#39049](https://github.com/WordPress/gutenberg/pull/39049)).
134
136
 
135
137
  ## 1.4.0 (2022-01-27)
136
138
 
137
- ### Enhancement
139
+ ### Enhancements
138
140
 
139
141
  - Speed up scaffolding process by omitting WordPress dependencies in the template ([#37639](https://github.com/WordPress/gutenberg/pull/37639)).
140
142
  - Update link to block registration reference ([#37674](https://github.com/WordPress/gutenberg/pull/37674))
141
143
 
142
144
  ## 1.3.0 (2021-07-21)
143
145
 
144
- ### Enhancement
146
+ ### Enhancements
145
147
 
146
148
  - Plugin scaffolded requires WordPress 5.8 now ([#33252](https://github.com/WordPress/gutenberg/pull/33252).
147
149
  - Scaffolded block is now registered from `block.json` with the `register_block_type` helper ([#33252](https://github.com/WordPress/gutenberg/pull/33252)).
148
150
 
149
151
  ## 1.2.0 (2021-04-06)
150
152
 
151
- ### Enhancement
153
+ ### Enhancements
152
154
 
153
155
  - Scaffolded plugin requires WordPress 5.7 now ([#29757](https://github.com/WordPress/gutenberg/pull/29757).
154
156
 
155
157
  ## 1.1.0 (2021-03-17)
156
158
 
157
- ### Enhancement
159
+ ### Enhancements
158
160
 
159
161
  - Scaffolded block is now registered from `block.json` with the `register_block_type_from_metadata` helper ([#28883](https://github.com/WordPress/gutenberg/pull/28883)).
160
162
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/create-block-tutorial-template",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "This is a template for @wordpress/create-block that creates an example 'Copyright Date' block. This block is used in the official WordPress block development Quick Start Guide.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
29
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
30
30
  }