Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 4.0.3 #527

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ Kristian Dupont <[email protected]> (https://github.com/kristiandupont
Lumi Pakkanen <[email protected]> (https://github.com/frostburn/)
Steven Spungin <[email protected]> (https://github.com/flamenco/)
XenoS (https://github.com/XenoS-ITA)
Samuel Bronson (https://github.com/SamB)
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,33 @@ Change Log

This file documents all notable changes to Peggy.

Unreleased
----------
4.0.3
-----

### Breaking changes
Released: 2024-06-19

### New features

- [#509](https://github.com/peggyjs/peggy/pull/509) Add and implement ES6 export button

### Bug fixes

- [#493](https://github.com/peggyjs/peggy/issues/493) Allow use of an empty
array, null, or undefined as allowedStartRules option
- [#505](https://github.com/peggyjs/peggy/pull/505) Fix vscode-eslint settings
to work with eslint flat config
- [#507](https://github.com/peggyjs/peggy/pull/507) Remove stray semicolon in CSS
- [#508](https://github.com/peggyjs/peggy/pull/508) Fix broken text input
- [#512](https://github.com/peggyjs/peggy/issues/512) Add "StartRules" to peg.d.ts.
- [#508](https://github.com/peggyjs/peggy/pull/508) Fix broken text input in
web version
- [#512](https://github.com/peggyjs/peggy/issues/512) Add "StartRules" to peg.d.ts
- [#513](https://github.com/peggyjs/peggy/issues/513) Allow whitespace between
plucked word and its pattern.
- [#520](https://github.com/peggyjs/peggy/issues/520) Grammar with token "constructor" fails to generate
- [#522](https://github.com/peggyjs/peggy/issues/522) Switched from puppeteer
to playwright for web tests, and added them to CI.

### Documentation

- [#506](https://github.com/peggyjs/peggy/pull/506) Added END OF INPUT (`!.`).

4.0.2
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="label">Download browser version</div>
<span id="download">
<a title="Download a minified version of Peggy for the browser"
href="https://unpkg.com/[email protected].2/browser/peggy.min.js">minified</a>
href="https://unpkg.com/[email protected].3/browser/peggy.min.js">minified</a>
</span>
<iframe id="discord"
src="https://discordapp.com/widget?id=985995982909100082&theme=dark"
Expand Down
4 changes: 2 additions & 2 deletions docs/js/benchmark-bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/js/examples.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by Peggy 4.0.2.
// @generated by Peggy 4.0.3.
//
// https://peggyjs.org/
(function(root) {
Expand Down
4 changes: 2 additions & 2 deletions docs/js/test-bundle.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/vendor/peggy/peggy.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/parser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by Peggy 4.0.2.
// @generated by Peggy 4.0.3.
//
// https://peggyjs.org/

Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

"use strict";

module.exports = "4.0.2";
module.exports = "4.0.3";
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peggy",
"version": "4.0.2",
"version": "4.0.3",
"description": "Parser generator for JavaScript",
"keywords": [
"grammar",
Expand Down
2 changes: 1 addition & 1 deletion test/cli/fixtures/imports_peggy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by Peggy 4.0.2.
// @generated by Peggy 4.0.3.
//
// https://peggyjs.org/

Expand Down
2 changes: 1 addition & 1 deletion test/cli/fixtures/lib.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by Peggy 4.0.2.
// @generated by Peggy 4.0.3.
//
// https://peggyjs.org/

Expand Down