Skip to content

Commit

Permalink
v0.1.2 - drop logging import & more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjc committed Apr 16, 2021
1 parent a5f87f8 commit e9baaac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ file in order to extract the docstrings, or in processing the contents.
====== =======================================================================
Code Description (and notes)
------ -----------------------------------------------------------------------
RST900 Failed to load file (e.g. unicode encoding issue under Python 2)
RST900 Failed to load file
RST901 Failed to parse file
RST902 Failed to parse __all__ entry (e.g. single entry as string not tuple)
RST903 Failed to lint docstring (e.g. unicode encoding issue under Python 2)
RST903 Failed to lint docstring
====== =======================================================================


Expand Down Expand Up @@ -236,6 +236,8 @@ Version History
======= ========== ===========================================================
Version Released Changes
------- ---------- -----------------------------------------------------------
v0.1.2 2021-04-16 - Dropped unused logging module import.
- Extended test coverage.
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).
Expand Down
2 changes: 1 addition & 1 deletion flake8_rst_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import restructuredtext_lint as rst_lint


__version__ = "0.1.1"
__version__ = "0.1.2"


rst_prefix = "RST"
Expand Down

0 comments on commit e9baaac

Please sign in to comment.