Skip to content

Commit 947e925

Browse files
committed
bump version to 11.0.0
1 parent 5dc5176 commit 947e925

File tree

6 files changed

+25
-31
lines changed

6 files changed

+25
-31
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 11.0.0-beta0
1+
## Version 11.0.0
22

33
**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.
44

README.md

+14-15
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,18 @@ detection.
5858

5959
---
6060

61-
#### Upgrading to Version 11 (currently in beta)
61+
#### Upgrading to Version 11
6262

63-
As always our major releases do contain 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 breaking changes and any actions you may need to take.
63+
As always, major releases do contain 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 breaking changes and any actions you may need to take.
6464

65-
**Latest:** https://github.com/highlightjs/highlight.js/issues/3131
6665

67-
#### Upgrading to Version 10
66+
**Upgrading to v10**: You really should probably be upgrading to version 11... but if you're coming from version 9 then these documents may still prove helpful.
6867

69-
Please read [VERSION_10_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_10_UPGRADE.md) for high-level summary of breaking changes and any actions you may need to take. See [VERSION_10_BREAKING_CHANGES.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_10_BREAKING_CHANGES.md) for a more detailed list and [CHANGES.md](https://github.com/highlightjs/highlight.js/blob/main/CHANGES.md) to learn what else is new.
68+
- [VERSION_10_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_10_UPGRADE.md) and [VERSION_10_BREAKING_CHANGES.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_10_BREAKING_CHANGES.md)
7069

7170
#### Support for older versions <!-- omit in toc -->
7271

73-
Please see [SECURITY.md](https://github.com/highlightjs/highlight.js/blob/main/SECURITY.md) for support information.
72+
Please see [SECURITY.md](https://github.com/highlightjs/highlight.js/blob/main/SECURITY.md) for long-term support information.
7473

7574
---
7675

@@ -325,28 +324,28 @@ see [DIGESTS.md](https://github.com/highlightjs/cdn-release/blob/main/DIGESTS.md
325324
**cdnjs** ([link](https://cdnjs.com/libraries/highlight.js))
326325

327326
```html
328-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.1/styles/default.min.css">
329-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.1/highlight.min.js"></script>
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>
330329
<!-- and it's easy to individually load additional languages -->
331-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.1/languages/go.min.js"></script>
330+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/languages/go.min.js"></script>
332331
```
333332

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

336335
```html
337-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.7.1/build/styles/default.min.css">
338-
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.7.1/build/highlight.min.js"></script>
336+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.0.0/build/styles/default.min.css">
337+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.0.0/build/highlight.min.js"></script>
339338
<!-- and it's easy to individually load additional languages -->
340-
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.7.1/build/languages/go.min.js"></script>
339+
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.0.0/build/languages/go.min.js"></script>
341340
```
342341

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

345344
```html
346-
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@10.7.1/styles/default.min.css">
347-
<script src="https://unpkg.com/@highlightjs/cdn-assets@10.7.1/highlight.min.js"></script>
345+
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.0.0/styles/default.min.css">
346+
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.0.0/highlight.min.js"></script>
348347
<!-- and it's easy to individually load additional languages -->
349-
<script src="https://unpkg.com/@highlightjs/cdn-assets@10.7.1/languages/go.min.js"></script>
348+
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.0.0/languages/go.min.js"></script>
350349
```
351350

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

SECURITY.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,16 @@ Due to both time and resource constrains the Highlight.js core team fully suppor
44

55
### Release Status
66

7-
| Version | Support | Status |
8-
| :-----: | :-: | :------ |
9-
| 11.0 | :white_check_mark: | The 11.x series is currently in beta. <br>See [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/master/VERSION_11_UPGRADE.md). |
10-
| 10.7.1 | :white_check_mark: | The 10.x series recieves regular updates, new features & security fixes. |
7+
| Version | Support | Status |
8+
| :-----: | :-: | :------ |
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).|
1111
| <= 10.4.0 | :x: | Known vulnerabities. |
12-
| <= 9.18.5 | :x: | Known vulnerabities. [EOL](https://github.com/highlightjs/highlight.js/issues/2877) |
13-
| 7.x, 8.x | :x: | Obsolete. Known vulnerabities. |
12+
| <= 9.18.5 | :x: | Known vulnerabities. [EOL](https://github.com/highlightjs/highlight.js/issues/2877) |
13+
| 7.x, 8.x | :x: | Obsolete. Known vulnerabities. |
1414

1515

1616
### Reporting a Vulnerability
1717

1818
Many vulnerabilities can simply be reported (and tracked) via our [GitHub issues](https://github.com/highlightjs/highlight.js/issues). If you feel your issue is more sensitive than that you can always reach us via email: [[email protected]](mailto:[email protected])
1919

20-
<!--
21-
| 11.0 | :white_check_mark: | The 11.x series recieves regular updates, new features & security fixes. |
22-
| 10.7.1 | :white_check_mark: | The 10.x series is in maintence mode. EOL TBD.<br>See [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/master/VERSION_11_UPGRADE.md).|
23-
24-
-->

docs/conf.py

+1-1
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-beta0'
51+
release = '11.0.0'
5252
# The short X.Y version.
5353
version = ".".join(release.split(".")[:2])
5454

package-lock.json

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

package.json

+1-1
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-beta0",
9+
"version": "11.0.0",
1010
"author": {
1111
"name": "Ivan Sagalaev",
1212
"email": "[email protected]"

0 commit comments

Comments
 (0)