Skip to content

Commit fbb7ff0

Browse files
committed
Release v0.8.0
- Add support for modifiers proposal (#28)
1 parent fe98d1b commit fbb7ff0

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ let regex = regjsgen.generate(ast);
3030

3131
## Support
3232

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

3636

3737
[ci]: https://github.com/bnjmnt4n/regjsgen/actions
3838
[ci-img]: https://github.com/bnjmnt4n/regjsgen/workflows/Node.js%20CI/badge.svg
3939
[codecov]: https://codecov.io/gh/bnjmnt4n/regjsgen
40-
[codecov-img]: https://codecov.io/gh/bnjmnt4n/regjsgen/branch/master/graph/badge.svg
40+
[codecov-img]: https://codecov.io/gh/bnjmnt4n/regjsgen/branch/main/graph/badge.svg
4141
[regjsparser]: https://github.com/jviereck/regjsparser

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "regjsgen",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "Generate regular expressions from regjsparser’s AST.",
55
"homepage": "https://github.com/bnjmnt4n/regjsgen",
66
"main": "regjsgen.js",

Diff for: regjsgen.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* regjsgen 0.5.2
3-
* Copyright 2014-2020 Benjamin Tan <https://ofcr.se/>
4-
* Available under the MIT license <https://github.com/bnjmnt4n/regjsgen/blob/master/LICENSE-MIT.txt>
2+
* regjsgen 0.8.0
3+
* Copyright 2014-2023 Benjamin Tan <https://ofcr.se/>
4+
* Available under the MIT license <https://github.com/bnjmnt4n/regjsgen/blob/main/LICENSE-MIT.txt>
55
*/
66
;(function() {
77
'use strict';

0 commit comments

Comments
 (0)