1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-23 23:21:00 +01:00

Prepare 3.0.1 release

This commit is contained in:
squidfunk 2018-08-05 21:45:54 +02:00
parent 679aa64310
commit 309389befd
9 changed files with 43 additions and 5 deletions

27
.env Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
# Copyright (c) 2016-2018 Martin Donath <martin.donath@squidfunk.com>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Activate virtual environment
if [ -f venv/bin/activate ]; then
echo "Activating virtual environment"
source venv/bin/activate
fi

1
.gitignore vendored
View File

@ -28,6 +28,7 @@
# Python-related # Python-related
__pycache__ __pycache__
venv
# Files generated by build # Files generated by build
/build /build

View File

@ -1,3 +1,7 @@
mkdocs-material-3.0.1 (2018-08-05)
* Fixed #838: Search result links incorrect
mkdocs-material-3.0.0 (2018-08-05) mkdocs-material-3.0.0 (2018-08-05)
* Upgraded MkDocs to 1.0 * Upgraded MkDocs to 1.0

View File

@ -49,6 +49,12 @@ pip show mkdocs-material
## Changelog ## Changelog
### 3.0.1 <small>_ August 5, 2018</small>
* Fixed [#838][838]: Search result links incorrect
[838]: https://github.com/squidfunk/mkdocs-material/issues/838
### 3.0.0 <small>_ August 5, 2018</small> ### 3.0.0 <small>_ August 5, 2018</small>
* Upgraded MkDocs to 1.0 * Upgraded MkDocs to 1.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -36,7 +36,7 @@
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}"> <meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
{% endfor %} {% endfor %}
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}"> <link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-3.0.0"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-3.0.1">
{% endblock %} {% endblock %}
{% block htmltitle %} {% block htmltitle %}
{% if page and page.meta and page.meta.title %} {% if page and page.meta and page.meta.title %}
@ -177,7 +177,7 @@
{% endblock %} {% endblock %}
</div> </div>
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/application.5c3774b5.js' | url }}"></script> <script src="{{ 'assets/javascripts/application.e72fd936.js' | url }}"></script>
{% if lang.t("search.language") != "en" %} {% if lang.t("search.language") != "en" %}
{% set languages = lang.t("search.language").split(",") %} {% set languages = lang.t("search.language").split(",") %}
{% if languages | length and languages[0] != "" %} {% if languages | length and languages[0] != "" %}

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "2.9.4", "version": "3.0.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "3.0.0", "version": "3.0.1",
"description": "A Material Design theme for MkDocs", "description": "A Material Design theme for MkDocs",
"keywords": [ "keywords": [
"mkdocs", "mkdocs",