mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Prepare 1.9.0 release
This commit is contained in:
parent
19feb7a67d
commit
3f80ada54d
12
CHANGELOG
12
CHANGELOG
@ -1,3 +1,13 @@
|
||||
mkdocs-material-1.9.0 (2017-08-29)
|
||||
|
||||
* Added info (synonym: todo) style for Admonition
|
||||
* Added question (synonym: help, faq) style for Admonition
|
||||
* Added support for pymdownx.details Markdown extension
|
||||
* Improved Admonition styles to match pymdownx.details
|
||||
* Improved styles for social links in footer
|
||||
* Replaced ligatures with Unicode code points to avoid broken layout
|
||||
* Upgraded pymdownx package dependency to >= 3.4
|
||||
|
||||
mkdocs-material-1.8.1 (2017-08-07)
|
||||
|
||||
* Fixed #429: Missing pagination for GitHub API
|
||||
@ -213,7 +223,7 @@ mkdocs-material-1.0.0 (2017-01-13)
|
||||
* Restructured templates into base templates and partials
|
||||
* Added build and watch scripts in package.json
|
||||
* Added support for Metadata and Footnotes Markdown extensions
|
||||
* Added support for pymdownx.* Markdown extensions
|
||||
* Added support for PyMdown Extensions package
|
||||
* Added support for collapsible sections in navigation
|
||||
* Added support for separate table of contents
|
||||
* Added support for better accessibility through REM-based layout
|
||||
|
@ -12,11 +12,21 @@ To determine the currently installed version, use the following command:
|
||||
|
||||
``` sh
|
||||
pip show mkdocs-material | grep -E ^Version
|
||||
# Version 1.8.1
|
||||
# Version 1.9.0
|
||||
```
|
||||
|
||||
## Changelog
|
||||
|
||||
### 1.9.0 <small> _ August 29, 2017</small>
|
||||
|
||||
* Added `info` (synonym: `todo`) style for Admonition
|
||||
* Added `question` (synonym: `help`, `faq`) style for Admonition
|
||||
* Added support for `pymdownx.details` Markdown extension
|
||||
* Improved Admonition styles to match `pymdownx.details`
|
||||
* Improved styles for social links in footer
|
||||
* Replaced ligatures with Unicode code points to avoid broken layout
|
||||
* Upgraded PyMdown Extension package dependency to >= 3.4
|
||||
|
||||
### 1.8.1 <small> _ August 7, 2017</small>
|
||||
|
||||
* Fixed [#429][429]: Missing pagination for GitHub API
|
||||
|
@ -24,7 +24,7 @@
|
||||
{% else %}
|
||||
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
||||
{% endif %}
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.8.1">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.9.0">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta.title %}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "1.8.1",
|
||||
"version": "1.9.0",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user