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