@wordpress/block-serialization-spec-parser 5.0.1 → 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 +7 -3
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.2.0 (2024-06-26)
6
+
7
+ ## 5.1.0 (2024-06-15)
8
+
5
9
  ## 5.0.0 (2024-05-31)
6
10
 
7
11
  ### Breaking Changes
@@ -135,11 +139,11 @@
135
139
 
136
140
  ## 3.0.0 (2019-03-06)
137
141
 
138
- ## Breaking Change
142
+ ### Breaking Changes
139
143
 
140
144
  - A `parser.js` file generated from the PEGJS grammar is now outputted in commonjs format.
141
145
 
142
- ## New Feature
146
+ ### New Features
143
147
 
144
148
  - A `parser.php` file generated from the PEGJS grammar is now added upon installation.
145
149
 
@@ -149,7 +153,7 @@
149
153
 
150
154
  ## 2.0.0 (2018-11-12)
151
155
 
152
- ### Breaking Change
156
+ ### Breaking Changes
153
157
 
154
158
  - JS and PHP parsers now behave consistently when parsing empty attributes.
155
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-serialization-spec-parser",
3
- "version": "5.0.1",
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": "0e973525f7787401b5a544e0727774d52a78639f"
41
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
42
42
  }