From b5da1aac8862d15b73f12ea8ec65ad919f4745b6 Mon Sep 17 00:00:00 2001
From: Peter Cock
Date: Thu, 9 Dec 2021 14:44:47 +0000
Subject: [PATCH] Call this v0.2.4
---
README.rst | 3 +++
flake8_rst_docstrings.py | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.rst b/README.rst
index d5d4c22..fc64d04 100644
--- a/README.rst
+++ b/README.rst
@@ -239,6 +239,9 @@ Version History
======= ========== ===========================================================
Version Released Changes
------- ---------- -----------------------------------------------------------
+v0.2.4 2021-12-09 - Fixed rare line number problem under Python 3.7 or older.
+ - Updated test framework to use ``pytest``.
+ - Required Python 3.6 or later.
v0.2.3 2021-05-03 - Fixed line number assert in one-line docstring-only file.
v0.2.2 2021-04-30 - Fixed line number problem under Python 3.8 or later.
- Corrected off-by-one line number in module docstrings.
diff --git a/flake8_rst_docstrings.py b/flake8_rst_docstrings.py
index f401543..1fb7c73 100644
--- a/flake8_rst_docstrings.py
+++ b/flake8_rst_docstrings.py
@@ -8,7 +8,7 @@
import restructuredtext_lint as rst_lint
-__version__ = "0.2.3"
+__version__ = "0.2.4"
rst_prefix = "RST"