mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-03-31 06:24:07 -04:00
Prepare 9.6.10 release
This commit is contained in:
19
CHANGELOG
19
CHANGELOG
@@ -1,3 +1,22 @@
|
|||||||
|
mkdocs-material-9.6.10 (2025-03-30)
|
||||||
|
|
||||||
|
This version is a pure refactoring release, and does not contain new features
|
||||||
|
or bug fixes. It strives to improve the compatibility of our templates with
|
||||||
|
alternative Jinja-like template engines that we're currently exploring,
|
||||||
|
including minijinja.
|
||||||
|
|
||||||
|
Additionally, it replaces several instances of Python function invocations
|
||||||
|
with idiomatic use of template filters. All instances where variables have
|
||||||
|
been mutated inside templates have been replaced. Most changes have been made
|
||||||
|
in partials, and only a few in blocks, and all of them are fully backward
|
||||||
|
compatible, so no changes to overrides are necessary.
|
||||||
|
|
||||||
|
Note that this release does not replace the Jinja template engine with
|
||||||
|
minijinja. However, our templates are now 99% compatible with minijinja,
|
||||||
|
which means we can explore alternative Jinja-compatible implementations.
|
||||||
|
Additionally, immutability and removal of almost all Python function
|
||||||
|
invocations means much more idiomatic templating.
|
||||||
|
|
||||||
mkdocs-material-9.6.9 (2025-03-17)
|
mkdocs-material-9.6.9 (2025-03-17)
|
||||||
|
|
||||||
* Updated Serbo-Croatian translations
|
* Updated Serbo-Croatian translations
|
||||||
|
|||||||
@@ -2,6 +2,27 @@
|
|||||||
|
|
||||||
## Material for MkDocs
|
## Material for MkDocs
|
||||||
|
|
||||||
|
### 9.6.10 <small>March 30, 2025</small> { id="9.6.10" }
|
||||||
|
|
||||||
|
This version is a pure refactoring release, and does not contain new features
|
||||||
|
or bug fixes. It strives to improve the compatibility of our templates with
|
||||||
|
alternative Jinja-like template engines that we're currently exploring,
|
||||||
|
including [minijinja].
|
||||||
|
|
||||||
|
Additionally, it replaces several instances of Python function invocations
|
||||||
|
with idiomatic use of template filters. All instances where variables have
|
||||||
|
been mutated inside templates have been replaced. Most changes have been made
|
||||||
|
in partials, and only a few in blocks, and all of them are fully backward
|
||||||
|
compatible, so no changes to overrides are necessary.
|
||||||
|
|
||||||
|
Note that this release does not replace the Jinja template engine with
|
||||||
|
minijinja. However, our templates are now 99% compatible with minijinja,
|
||||||
|
which means we can explore alternative Jinja-compatible implementations.
|
||||||
|
Additionally, immutability and removal of almost all Python function
|
||||||
|
invocations means much more idiomatic templating.
|
||||||
|
|
||||||
|
[minijinja]: https://github.com/mitsuhiko/minijinja
|
||||||
|
|
||||||
### 9.6.9 <small>March 17, 2025</small> { id="9.6.9" }
|
### 9.6.9 <small>March 17, 2025</small> { id="9.6.9" }
|
||||||
|
|
||||||
- Updated Serbo-Croatian translations
|
- Updated Serbo-Croatian translations
|
||||||
|
|||||||
@@ -18,4 +18,4 @@
|
|||||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
__version__ = "9.6.9"
|
__version__ = "9.6.10"
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.6.9">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.6.10">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page.meta and page.meta.title %}
|
{% if page.meta and page.meta.title %}
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.6.9",
|
"version": "9.6.10",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.6.9",
|
"version": "9.6.10",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clipboard": "^2.0.11",
|
"clipboard": "^2.0.11",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.6.9",
|
"version": "9.6.10",
|
||||||
"description": "Documentation that simply works",
|
"description": "Documentation that simply works",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
|||||||
Reference in New Issue
Block a user