Skip to content

Commit 0a39f04

Browse files
committed
Prepare 9.5.19 release
1 parent 023e177 commit 0a39f04

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
mkdocs-material-9.5.19 (2024-04-25)
2+
3+
* Updated MkDocs to 1.6 and limited version to < 2
4+
* Updated Docker image to latest Alpine Linux
5+
* Removed setup.py, now that GitHub fully understands pyproject.toml
6+
* Improved interop of social plugin with third-party MkDocs themes
7+
* Fixed #7099: Blog reading time not rendered correctly for Japanese
8+
* Fixed #7097: Improved resilience of tags plugin when no tags are given
9+
* Fixed #7090: Active tab indicator in nested content tabs rendering bug
10+
111
mkdocs-material-9.5.18 (2024-04-16)
212

313
* Refactored tooltips implementation to fix positioning issues

docs/changelog/index.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Material for MkDocs
44

5+
### 9.5.19 <small>April 25, 2024</small> { id="9.5.19" }
6+
7+
- Updated MkDocs to 1.6 and limited version to < 2
8+
- Updated Docker image to latest Alpine Linux
9+
- Removed `setup.py`, now that GitHub fully understands `pyproject.toml`
10+
- Improved interop of social plugin with third-party MkDocs themes
11+
- Fixed #7099: Blog reading time not rendered correctly for Japanese
12+
- Fixed #7097: Improved resilience of tags plugin when no tags are given
13+
- Fixed #7090: Active tab indicator in nested content tabs rendering bug
14+
515
### 9.5.18 <small>April 16, 2024</small> { id="9.5.18" }
616

717
- Refactored tooltips implementation to fix positioning issues

material/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1919
# IN THE SOFTWARE.
2020

21-
__version__ = "9.5.18"
21+
__version__ = "9.5.19"

material/templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
3333
{% endif %}
3434
<link rel="icon" href="{{ config.theme.favicon | url }}">
35-
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.18">
35+
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.19">
3636
{% endblock %}
3737
{% block htmltitle %}
3838
{% if page.meta and page.meta.title %}

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
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "9.5.18",
3+
"version": "9.5.19",
44
"description": "Documentation that simply works",
55
"keywords": [
66
"mkdocs",

0 commit comments

Comments
 (0)