diff --git a/README.rst b/README.rst index ab41a6f..414aa11 100644 --- a/README.rst +++ b/README.rst @@ -236,9 +236,9 @@ Version History ======= ========== =========================================================== Version Released Changes ------- ---------- ----------------------------------------------------------- +v0.1.1 2021-04-15 - Explicit ``pygments`` dependency for any code blocks. v0.1.0 2021-04-15 - Import the parser from ``pydocstyle`` directly. - Requires Python 3 (drops support for Python 2). - - Explicit ``pygments`` dependency for any code blocks. v0.0.14 2020-09-22 - Adds ``RST307`` for error in directive (eg invalid args). v0.0.13 2019-12-26 - Adds ``RST218`` and ``RST219``. v0.0.12 2019-11-18 - Adds ``RST213`` to ``RST217``. @@ -277,8 +277,8 @@ To make a new release once tested locally and on TravisCI:: $ git tag vX.Y.Z $ python setup.py sdist --formats=gztar - $ twine upload dist/flake8-rst-docstrings-X.Y.Z.tar.gz $ git push origin master --tags + $ twine upload dist/flake8-rst-docstrings-X.Y.Z.tar.gz The PyPI upload should trigger an automated pull request updating the `flake8-rst-docstrings conda-forge recipe diff --git a/flake8_rst_docstrings.py b/flake8_rst_docstrings.py index a9b8264..5d70f40 100644 --- a/flake8_rst_docstrings.py +++ b/flake8_rst_docstrings.py @@ -17,7 +17,7 @@ import restructuredtext_lint as rst_lint -__version__ = "0.1.0" +__version__ = "0.1.1" log = logging.getLogger(__name__)