Prepare 1.0.0-beta release

This commit is contained in:
squidfunk 2016-12-18 19:42:08 +01:00
parent 91c4926fe3
commit d2285b4d92
3 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,4 @@
mkdocs-material-1.0.0-rc.1 (2016-XX-XX) mkdocs-material-1.0.0 (2016-12-18)
IN PROGRESS ...
The theme has been entirely rewritten from scratch to better reflect the The theme has been entirely rewritten from scratch to better reflect the
idea of what a documentation theme using the Material Design guidelines idea of what a documentation theme using the Material Design guidelines

View File

@ -1,6 +1,6 @@
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "0.2.1", "version": "1.0.0",
"description": "A material design theme for MkDocs", "description": "A material design theme for MkDocs",
"keywords": [ "keywords": [
"mkdocs", "mkdocs",

View File

@ -23,7 +23,7 @@ from setuptools import setup, find_packages
# Package description # Package description
setup( setup(
name = 'mkdocs-material', name = 'mkdocs-material',
version = '0.2.1', version = '1.0.0',
url = 'http://squidfunk.github.io/mkdocs-material/', url = 'http://squidfunk.github.io/mkdocs-material/',
license = 'MIT', license = 'MIT',
description = 'A material design theme for MkDocs', description = 'A material design theme for MkDocs',
@ -38,4 +38,4 @@ setup(
] ]
}, },
zip_safe = False zip_safe = False
) )