Skip to content

Commit

Permalink
Release v0.8.0
Browse files Browse the repository at this point in the history
- Add support for modifiers proposal (#28)
  • Loading branch information
bnjmnt4n committed Jun 6, 2023
1 parent fe98d1b commit fbb7ff0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ let regex = regjsgen.generate(ast);

## Support

Tested in Node.js 10, 12, 14, and 16.<br>
Compatible with regjsparser v0.7.0’s AST.
Tested on Node.js 16 and 18.<br>
Compatible with regjsparser v0.10.0’s AST.


[ci]: https://github.com/bnjmnt4n/regjsgen/actions
[ci-img]: https://github.com/bnjmnt4n/regjsgen/workflows/Node.js%20CI/badge.svg
[codecov]: https://codecov.io/gh/bnjmnt4n/regjsgen
[codecov-img]: https://codecov.io/gh/bnjmnt4n/regjsgen/branch/master/graph/badge.svg
[codecov-img]: https://codecov.io/gh/bnjmnt4n/regjsgen/branch/main/graph/badge.svg
[regjsparser]: https://github.com/jviereck/regjsparser
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": "regjsgen",
"version": "0.7.1",
"version": "0.8.0",
"description": "Generate regular expressions from regjsparser’s AST.",
"homepage": "https://github.com/bnjmnt4n/regjsgen",
"main": "regjsgen.js",
Expand Down
6 changes: 3 additions & 3 deletions regjsgen.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* regjsgen 0.5.2
* Copyright 2014-2020 Benjamin Tan <https://ofcr.se/>
* Available under the MIT license <https://github.com/bnjmnt4n/regjsgen/blob/master/LICENSE-MIT.txt>
* regjsgen 0.8.0
* Copyright 2014-2023 Benjamin Tan <https://ofcr.se/>
* Available under the MIT license <https://github.com/bnjmnt4n/regjsgen/blob/main/LICENSE-MIT.txt>
*/
;(function() {
'use strict';
Expand Down

0 comments on commit fbb7ff0

Please sign in to comment.