Skip to content

Commit 790f640

Browse files
authored
Merge pull request #406 from kaizhu256/branch-v2022.6.21
# v2022.6.21
2 parents df3491f + b829bb1 commit 790f640

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ import moduleFs from "fs";
412412
"type": "git",
413413
"url": "https://github.com/jslint-org/jslint.git"
414414
},
415-
"version": "2022.6.1-beta"
415+
"version": "2022.6.21"
416416
}, undefined, 4)
417417
}
418418
].map(async function ({

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
- jslint - add new warning "Expected Object.create(null) instead of {}"
1515
- node - after node-v14 is deprecated, remove shell-code `export "NODE_OPTIONS=--unhandled-rejections=strict"`.
1616

17-
# v2022.6.1-beta
18-
- bugfix - fix expression after "await" mis-identified as statement
17+
# v2022.6.21
1918
- directive - add new directive `subscript` for linting of scripts targeting Google Closure Compiler
19+
- bugfix - fix expression after "await" mis-identified as statement
2020
- warning - relax warning about missing `catch` in `try...finally` statement
2121
- jslint - allow aliases `evil, nomen` for jslint-directives `eval, name`, respectively for backwards-compat
2222
- bugfix - fix broken codemirror example

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Douglas Crockford <[email protected]>
33

44

55
# Status
6-
| Branch | [master<br>(v2022.5.20)](https://github.com/jslint-org/jslint/tree/master) | [beta<br>(Web Demo)](https://github.com/jslint-org/jslint/tree/beta) | [alpha<br>(Development)](https://github.com/jslint-org/jslint/tree/alpha) |
6+
| Branch | [master<br>(v2022.6.21)](https://github.com/jslint-org/jslint/tree/master) | [beta<br>(Web Demo)](https://github.com/jslint-org/jslint/tree/beta) | [alpha<br>(Development)](https://github.com/jslint-org/jslint/tree/alpha) |
77
|--:|:--:|:--:|:--:|
88
| CI | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jslint-org/jslint/actions?query=branch%3Amaster) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/jslint-org/jslint/actions?query=branch%3Abeta) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/jslint-org/jslint/actions?query=branch%3Aalpha) |
99
| Coverage | [![coverage](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/index.html) |

jslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ let jslint_charset_ascii = (
165165
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
166166
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
167167
);
168-
let jslint_edition = "v2022.6.1-beta";
168+
let jslint_edition = "v2022.6.21";
169169
let jslint_export; // The jslint object to be exported.
170170
let jslint_fudge = 1; // Fudge starting line and starting
171171
// ... column to 1.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
"test2": "sh jslint_ci.sh shCiBase"
3434
},
3535
"type": "module",
36-
"version": "2022.6.1-beta"
36+
"version": "2022.6.21"
3737
}

0 commit comments

Comments
 (0)