Skip to content

Commit 5abc0e5

Browse files
committed
# v2024.11.24
- jslint - bugfix - Fix optional dynamic-property/function-call not recognized. - quickstart - bugfix - Fix broken quickstart-jslint-in-codemirror demo. - ci - Update shell-function shHttpFileServer() to auto-serve /index.html, when url-path is root /.
1 parent 068959d commit 5abc0e5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ import moduleFs from "fs";
441441
"type": "git",
442442
"url": "https://github.com/jslint-org/jslint.git"
443443
},
444-
"version": "2024.11.1"
444+
"version": "2024.11.24"
445445
}, undefined, 4)
446446
}
447447
].map(async function ({

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
- jslint - add new warning requiring paren around plus-separated concatenations.
88
- jslint - try to improve parser to be able to parse jquery.js without stopping.
99

10-
# v2024.11.1-beta
11-
- quickstart - bugfix - Fix broken quickstart-jslint-in-codemirror demo.
10+
# v2024.11.24
1211
- jslint - bugfix - Fix optional dynamic-property/function-call not recognized.
12+
- quickstart - bugfix - Fix broken quickstart-jslint-in-codemirror demo.
1313
- ci - Update shell-function shHttpFileServer() to auto-serve /index.html, when url-path is root /.
1414

1515
# v2024.6.28

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Douglas Crockford <[email protected]>
33

44

55
# Status
6-
| Branch | [master<br>(v2024.6.28)](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>(v2024.11.24)](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) |
@@ -963,7 +963,7 @@ This PR will additionally:
963963
- `git push upstream alpha -f`
964964
- verify ci-success for upstream-branch-alpha
965965
- https://github.com/jslint-org/jslint/actions
966-
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2024.6.28
966+
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2024.11.24
967967
- click `Create pull request`
968968
- input `Add a title` with: `# v20yy.mm.dd`
969969
- input `Add a description` with:

jslint.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163163
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164164
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165165
);
166-
let jslint_edition = "v2024.11.1-beta";
166+
let jslint_edition = "v2024.11.24";
167167
let jslint_export; // The jslint object to be exported.
168168
let jslint_fudge = 1; // Fudge starting line and starting
169169
// ... column to 1.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"shCiArtifactUpload": 1,
3636
"shCiPublishNpm": 1,
3737
"type": "module",
38-
"version": "2024.11.1-beta"
38+
"version": "2024.11.24"
3939
}

0 commit comments

Comments
 (0)