Skip to content

v2.7.8

Compare
Choose a tag to compare
@tomtau tomtau released this 02 Mar 00:41
· 4 commits to master since this release
28c01cb

What's Changed

  • bump toolchain to be able to install cargo-msrv by @tomtau in #973
  • fix: DebuggerContest::load_XXX accepts impl AsRef instead of &PathBuf by @aatifsyed in #976
  • ci: bump toolchain for check by @tomtau in #978
  • feat: add sql grammar with pratt parser and tests by @EmirVildanov in #983
  • fix: adjust tag association in optional and repeat expressions by @tomtau in #985

New Contributors

Full Changelog: v2.7.7...v2.7.8

Warning: Semantic Versioning

Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated Rule enum.

This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these "grammar non-breaking but semver-breaking" changes are now available only under the "grammar-extras" feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:

...
pest_derive = { version = "2.7", features = ["grammar-extras"] }