mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Prepare 7.0.5 release
This commit is contained in:
parent
b6779114b0
commit
7c297046d1
@ -1,3 +1,12 @@
|
||||
mkdocs-material-7.0.5 (2021-03-07)
|
||||
|
||||
* Added extracopyright block to allow for custom copyright info
|
||||
* Fixed evaluation of third-party scripts when using instant loading
|
||||
* Fixed edge cases when using instant loading without directory URLs
|
||||
* Fixed handling of version selector when using instant loading
|
||||
* Fixed regression with header title not being updated correctly
|
||||
* Fixed expanded sections not opening on first click (7.0.4 regression)
|
||||
|
||||
mkdocs-material-7.0.4+insiders-2.2.1 (2021-03-04)
|
||||
|
||||
* Fixed #2382: Repository stats failing when no release tag is present
|
||||
|
@ -6,6 +6,15 @@ template: overrides/main.html
|
||||
|
||||
## Material for MkDocs
|
||||
|
||||
### 7.0.5 <small>_ March 7, 2021</small>
|
||||
|
||||
- Added `extracopyright` block to allow for custom copyright info
|
||||
- Fixed evaluation of third-party scripts when using instant loading
|
||||
- Fixed edge cases when using instant loading without directory URLs
|
||||
- Fixed handling of version selector when using instant loading
|
||||
- Fixed regression with header title not being updated correctly
|
||||
- Fixed expanded sections not opening on first click (7.0.4 regression)
|
||||
|
||||
### 7.0.4 <small>_ March 4, 2021</small>
|
||||
|
||||
- Added Icelandic translations
|
||||
|
@ -27,7 +27,7 @@
|
||||
<link rel="canonical" href="{{ page.canonical_url }}">
|
||||
{% endif %}
|
||||
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-7.0.4">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-7.0.5">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta and page.meta.title %}
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "7.0.4",
|
||||
"version": "7.0.5",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "7.0.4",
|
||||
"version": "7.0.5",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user