Skip to content

Commit 1cf31f0

Browse files
committed
(chore) release 11.0.1
1 parent fbf223a commit 1cf31f0

File tree

6 files changed

+23
-15
lines changed

6 files changed

+23
-15
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 11.0.1
2+
3+
- (fix) use console.log for .js.js deprecation warning (#3222) [Josh Goebel][]
4+
- (fix) do not restrict exports from cdn-assets (#3223) [Josh Goebel][]
5+
6+
[Josh Goebel]: https://github.com/joshgoebel
7+
8+
19
## Version 11.0.0
210

311
**This is a major release.** As such it contains breaking changes which may require action from users. Please read [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_11_UPGRADE.md) for a detailed summary of all breaking changes.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -324,28 +324,28 @@ see [DIGESTS.md](https://github.com/highlightjs/cdn-release/blob/main/DIGESTS.md
324324
**cdnjs** ([link](https://cdnjs.com/libraries/highlight.js))
325325

326326
```html
327-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/styles/default.min.css">
328-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/highlight.min.js"></script>
327+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/styles/default.min.css">
328+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/highlight.min.js"></script>
329329
<!-- and it's easy to individually load additional languages -->
330-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/languages/go.min.js"></script>
330+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/languages/go.min.js"></script>
331331
```
332332

333333
**jsdelivr** ([link](https://www.jsdelivr.com/package/gh/highlightjs/cdn-release))
334334

335335
```html
336-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].0/build/styles/default.min.css">
337-
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].0/build/highlight.min.js"></script>
336+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].1/build/styles/default.min.css">
337+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].1/build/highlight.min.js"></script>
338338
<!-- and it's easy to individually load additional languages -->
339-
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].0/build/languages/go.min.js"></script>
339+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected].1/build/languages/go.min.js"></script>
340340
```
341341

342342
**unpkg** ([link](https://unpkg.com/browse/@highlightjs/cdn-assets/))
343343

344344
```html
345-
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/[email protected].0/styles/default.min.css">
346-
<script src="https://unpkg.com/@highlightjs/[email protected].0/highlight.min.js"></script>
345+
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/[email protected].1/styles/default.min.css">
346+
<script src="https://unpkg.com/@highlightjs/[email protected].1/highlight.min.js"></script>
347347
<!-- and it's easy to individually load additional languages -->
348-
<script src="https://unpkg.com/@highlightjs/[email protected].0/languages/go.min.js"></script>
348+
<script src="https://unpkg.com/@highlightjs/[email protected].1/languages/go.min.js"></script>
349349
```
350350

351351
**Note:** *The CDN-hosted `highlight.min.js` package doesn't bundle every language.* It would be

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Due to both time and resource constrains the Highlight.js core team fully suppor
66

77
| Version | Support | Status |
88
| :-----: | :-: | :------ |
9-
| 11.0 | :white_check_mark: | The 11.x series recieves regular updates, new features & security fixes. |
10-
| 10.7.2 | :white_check_mark: | The 10.x series is now in maintence mode. EOL TBD.<br>See [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/master/VERSION_11_UPGRADE.md).|
9+
| 11.x | :white_check_mark: | The 11.x series recieves regular updates, new features & security fixes. |
10+
| 10.7.3 | :white_check_mark: | The 10.x series is now in maintence mode. EOL TBD.<br>See [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/master/VERSION_11_UPGRADE.md).|
1111
| <= 10.4.0 | :x: | Known vulnerabities. |
1212
| <= 9.18.5 | :x: | Known vulnerabities. [EOL](https://github.com/highlightjs/highlight.js/issues/2877) |
1313
| 7.x, 8.x | :x: | Obsolete. Known vulnerabities. |

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# built documents.
4949

5050
# The full version, including alpha/beta/rc tags.
51-
release = '11.0.0'
51+
release = '11.0.1'
5252
# The short X.Y version.
5353
version = ".".join(release.split(".")[:2])
5454

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"syntax"
77
],
88
"homepage": "https://highlightjs.org/",
9-
"version": "11.0.0",
9+
"version": "11.0.1",
1010
"author": {
1111
"name": "Ivan Sagalaev",
1212
"email": "[email protected]"

0 commit comments

Comments
 (0)