mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Prepare 9.1.17 release
This commit is contained in:
parent
d8a0e36ce3
commit
9c7ff74989
13
CHANGELOG
13
CHANGELOG
@ -1,4 +1,13 @@
|
||||
mkdocs-material-9.1.16+insiders-4.36.0 (2023-07-15)
|
||||
mkdocs-material-9.1.17+insiders-4.36.1 (2023-06-23)
|
||||
|
||||
* Fixed #5618: Date comparison breaking for drafts in blog plugin
|
||||
|
||||
mkdocs-material-9.1.17 (2023-06-23)
|
||||
|
||||
* Fixed #5633: Code annotations with nested lists incorrectly mounted
|
||||
* Fixed #5628: Regression in new social plugin configuration scheme
|
||||
|
||||
mkdocs-material-9.1.16+insiders-4.36.0 (2023-06-15)
|
||||
|
||||
* Added support for instant prefetching to speed up slow connections
|
||||
* Improved stability of anchor link removal in built-in typeset plugin
|
||||
@ -6,7 +15,7 @@ mkdocs-material-9.1.16+insiders-4.36.0 (2023-07-15)
|
||||
* Removed unnecessary import test for cairosvg in optimize plugin
|
||||
* Fixed #5590: regular expression for anchor link removal too greedy
|
||||
|
||||
mkdocs-material-9.1.16 (2023-07-15)
|
||||
mkdocs-material-9.1.16 (2023-06-15)
|
||||
|
||||
* Updated Indonesian translations
|
||||
* Ensure scroll bar follows color scheme of operating system
|
||||
|
@ -2,6 +2,11 @@
|
||||
|
||||
## Material for MkDocs
|
||||
|
||||
### 9.1.17 <small>June 23, 2023</small> { id="9.1.17" }
|
||||
|
||||
- Fixed #5633: Code annotations with nested lists incorrectly mounted
|
||||
- Fixed #5628: Regression in new social plugin configuration scheme
|
||||
|
||||
### 9.1.16 <small>June 15, 2023</small> { id="9.1.16" }
|
||||
|
||||
- Updated Indonesian translations
|
||||
|
@ -2,13 +2,17 @@
|
||||
|
||||
## Material for MkDocs Insiders
|
||||
|
||||
### 4.36.1 <small>June 23, 2023</small> { id="4.36.1" }
|
||||
|
||||
- Fixed #5618: Date comparison breaking for drafts in blog plugin
|
||||
|
||||
### 4.36.0 <small>June 15, 2023</small> { id="4.36.0" }
|
||||
|
||||
- Added support for instant prefetching to speed up slow connections
|
||||
- Improved stability of anchor link removal in built-in typeset plugin
|
||||
- Improved performance of regular expressions in typeset plugin
|
||||
- Removed unnecessary import test for `cairosvg` in optimize plugin
|
||||
- Fixed #5590: regular expression for anchor link removal too greedy
|
||||
- Fixed #5590: Regular expression for anchor link removal too greedy
|
||||
|
||||
### 4.35.3 <small>June 1, 2023</small> { id="4.35.3" }
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
<link rel="next" href="{{ page.next_page.url | url }}">
|
||||
{% endif %}
|
||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.1.16">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.1.17">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page.meta and page.meta.title %}
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.1.16",
|
||||
"version": "9.1.17",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.1.16",
|
||||
"version": "9.1.17",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"array-flat-polyfill": "^1.0.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.1.16",
|
||||
"version": "9.1.17",
|
||||
"description": "Documentation that simply works",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user