diff --git a/.travis.yml b/.travis.yml index 74f1659..0a57ef0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,4 @@ install: script: - py.test - - flake8 . --ignore=E501 --exclude=docs/conf.py + - flake8 . --ignore=E501,E722,E741 --exclude=docs/conf.py diff --git a/docs/changelog.rst b/docs/changelog.rst index e563fa5..a3f56d0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,11 @@ Change log ********** +0.2.2 +##### + + * CommonMark is now only imported if absolutely required. This should fix failures on read the docs. Thanks to @Chilipp for fixing this! + 0.2.1 ##### diff --git a/sphinxarg/__init__.py b/sphinxarg/__init__.py index fc79d63..020ed73 100644 --- a/sphinxarg/__init__.py +++ b/sphinxarg/__init__.py @@ -1 +1 @@ -__version__ = '0.2.1' +__version__ = '0.2.2'