@wordpress/block-serialization-spec-parser 5.1.0 → 5.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 +5 -3
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.2.0 (2024-06-26)
6
+
5
7
  ## 5.1.0 (2024-06-15)
6
8
 
7
9
  ## 5.0.0 (2024-05-31)
@@ -137,11 +139,11 @@
137
139
 
138
140
  ## 3.0.0 (2019-03-06)
139
141
 
140
- ## Breaking Change
142
+ ### Breaking Changes
141
143
 
142
144
  - A `parser.js` file generated from the PEGJS grammar is now outputted in commonjs format.
143
145
 
144
- ## New Feature
146
+ ### New Features
145
147
 
146
148
  - A `parser.php` file generated from the PEGJS grammar is now added upon installation.
147
149
 
@@ -151,7 +153,7 @@
151
153
 
152
154
  ## 2.0.0 (2018-11-12)
153
155
 
154
- ### Breaking Change
156
+ ### Breaking Changes
155
157
 
156
158
  - JS and PHP parsers now behave consistently when parsing empty attributes.
157
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-serialization-spec-parser",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "Block serialization specification parser for WordPress posts.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -38,5 +38,5 @@
38
38
  "build:js": "pegjs --format commonjs -o ./parser.js ./grammar.pegjs",
39
39
  "build:php": "node bin/create-php-parser.js"
40
40
  },
41
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
41
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
42
42
  }