@wordpress/block-serialization-spec-parser 4.34.0 → 4.35.1

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.35.0 (2023-06-07)
6
+
5
7
  ## 4.34.0 (2023-05-24)
6
8
 
7
9
  ## 4.33.0 (2023-05-10)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Block Serialization Spec Parser
2
2
 
3
- This library contains the grammar file (`grammar.pegjs`) for WordPress posts which is a block serialization [_specification_](https://github.com/WordPress/gutenberg/tree/HEAD/docs/contributors/code/grammar.md) which is used to generate the actual _parser_ which is also bundled in this package.
3
+ This library contains the grammar file (`grammar.pegjs`) for WordPress posts which is a block serialization _specification_ which is used to generate the actual _parser_ which is also bundled in this package.
4
4
 
5
5
  PEG parser generators are available in many languages, though different libraries may require some translation of this grammar into their syntax. For more information see:
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-serialization-spec-parser",
3
- "version": "4.34.0",
3
+ "version": "4.35.1",
4
4
  "description": "Block serialization specification parser for WordPress posts.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -37,5 +37,5 @@
37
37
  "build:js": "pegjs --format commonjs -o ./parser.js ./grammar.pegjs",
38
38
  "build:php": "node bin/create-php-parser.js"
39
39
  },
40
- "gitHead": "c7c79cb11b677adcbf06cf5f8cfb6c5ec1699f19"
40
+ "gitHead": "ce5639111c30763dbdf07f40eeb136ea6030ecf1"
41
41
  }