Prepare 0.1.3 release

This commit is contained in:
squidfunk 2016-02-21 18:30:49 +01:00
parent 610d8c0e95
commit 60f2982c25
6 changed files with 15 additions and 8 deletions

View File

@ -1,4 +1,4 @@
mkdocs-material-0.x.x (2016-xx-xx)
mkdocs-material-0.1.3 (2016-02-21)
* Fixed #3: Ordered lists within an unordered list have ::before content
* Fixed #4: Click on Logo/Title without Github-Repository: "None"

View File

@ -1,6 +1,6 @@
{
"name": "mkdocs-material",
"version": "0.1.2",
"version": "0.1.3",
"description": "A material design theme for MkDocs",
"homepage": "http://squidfunk.github.io/mkdocs-material/",
"authors": [

View File

@ -202,10 +202,17 @@ This will print the following block:
Nothing to see here, move along.
The Material template adds a neutral color for the `note` class and a red color
for the `warning` class.
for the `warning` class. You can also add a custom title:
!!! warning
You shall not pass.
``` markdown
!!! warning "Don't try this at home"
If you do, you will regret it.
```
This will print:
!!! warning "Don't try this at home"
If you do, you will regret it.
More colors can be freely defined.

View File

@ -36,7 +36,7 @@ theme_dir: material
# Options
extra:
version: 0.1.2
version: 0.1.3
logo: images/logo.png
font:
text: Ubuntu

View File

@ -1,6 +1,6 @@
{
"name": "mkdocs-material",
"version": "0.1.2",
"version": "0.1.3",
"description": "A material design theme for MkDocs",
"homepage": "http://squidfunk.github.io/mkdocs-material/",
"authors": [

View File

@ -23,7 +23,7 @@ from setuptools import setup, find_packages
# Package description
setup(
name = 'mkdocs-material',
version = '0.1.2',
version = '0.1.3',
url = 'http://squidfunk.github.io/mkdocs-material/',
license = 'MIT',
description = 'A material design theme for MkDocs',