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)
|
||||
|
||||
* Updated Serbo-Croatian translations
|
||||
|
||||
@@ -2,6 +2,27 @@
|
||||
|
||||
## 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" }
|
||||
|
||||
- Updated Serbo-Croatian translations
|
||||
|
||||
@@ -18,4 +18,4 @@
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
# 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 }}">
|
||||
{% endif %}
|
||||
<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 %}
|
||||
{% 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.6.9",
|
||||
"version": "9.6.10",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.6.9",
|
||||
"version": "9.6.10",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"clipboard": "^2.0.11",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.6.9",
|
||||
"version": "9.6.10",
|
||||
"description": "Documentation that simply works",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
||||
Reference in New Issue
Block a user