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