Skip to content

Commit 0e27596

Browse files
committed
Prepare 9.4.2 release
1 parent 0e104c1 commit 0e27596

File tree

6 files changed

+47
-5
lines changed

6 files changed

+47
-5
lines changed

CHANGELOG

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
mkdocs-material-9.4.2 (2023-09-25)
2+
3+
* Updated Slovenian translations
4+
* Added animation to sidebar navigation expansion and collapse
5+
* Added support for auto-replacement of document head for instant navigation
6+
* Improved compatibility of new emoji extension with Python < 3.10
7+
* Switched regex dependency to use minimal version
8+
* Refactored alignment and spacing of sidebar navigation
9+
* Fixed expansion button not focusable via keyboard in sidebar navigation
10+
* Fixed viewport offset restoration on first load when using instant navigation
11+
* Fixed accidental highlight of non-clickable elements in blog plugin sidebar
12+
* Fixed #6041: Blog plugin crashes when nav is defined and blog not included
13+
* Fixed #5972: Blog plugin ignores section index pages in paginated views
14+
* Fixed #5954: Repeated click on anchor ignored when using instant navigation
15+
* Fixed #5742: Keyboard navigation broken when using instant navigation
16+
17+
Updated templates
18+
19+
* partials/nav-item.html
20+
* blog-post.html
21+
122
mkdocs-material-9.4.1 (2023-09-22)
223

324
* Improved colors and contrast in dark mode

docs/changelog/index.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## Material for MkDocs
44

5+
### 9.4.2 <small>September 25, 2023</small> { id="9.4.2" }
6+
7+
- Updated Slovenian translations
8+
- Added animation to sidebar navigation expansion and collapse
9+
- Added support for auto-replacement of document head for instant navigation
10+
- Improved compatibility of new emoji extension with Python < 3.10
11+
- Switched regex dependency to use minimal version
12+
- Refactored alignment and spacing of sidebar navigation
13+
- Fixed expansion button not focusable via keyboard in sidebar navigation
14+
- Fixed viewport offset restoration on first load when using instant navigation
15+
- Fixed accidental highlight of non-clickable elements in blog plugin sidebar
16+
- Fixed #6041: Blog plugin crashes when `nav` is defined and blog not included
17+
- Fixed #5972: Blog plugin ignores section index pages in paginated views
18+
- Fixed #5954: Repeated click on anchor ignored when using instant navigation
19+
- Fixed #5742: Keyboard navigation broken when using instant navigation
20+
21+
__Updated templates__ ([diff](https://github.com/squidfunk/mkdocs-material/compare/9.4.1...master))
22+
23+
- `partials/nav-item.html`
24+
- `blog-post.html`
25+
526
### 9.4.1 <small>September 22, 2023</small> { id="9.4.1" }
627

728
- Improved colors and contrast in dark mode

material/__init__.py

Lines changed: 1 addition & 1 deletion
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.4.1"
21+
__version__ = "9.4.2"

material/templates/base.html

Lines changed: 1 addition & 1 deletion
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.4.1">
35+
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.4.2">
3636
{% endblock %}
3737
{% block htmltitle %}
3838
{% if page.meta and page.meta.title %}

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

0 commit comments

Comments
 (0)