From a739ede10262b133c027ebaf30d77992b95b2eea Mon Sep 17 00:00:00 2001
From: Peter Cock
Date: Thu, 15 Apr 2021 15:29:55 +0100
Subject: [PATCH] Call this v0.1.1
Managed to do pip upload of v0.1.0 from a stale branch
---
README.rst | 4 ++--
flake8_rst_docstrings.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
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__)