Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
v0.3.0 — Support __doc__
Browse files Browse the repository at this point in the history
- Support fetching module docstrings with `variable="__doc__"`
  • Loading branch information
jwodder committed Mar 17, 2020
1 parent 10b2345 commit 601a036
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.3.0 (in development)
-----------------------
v0.3.0 (2020-03-17)
-------------------
- Support fetching module docstrings with `variable="__doc__"`

v0.2.0 (2020-03-16)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The Functional Way

[build-system]
requires = [
"read_version ~= 0.2.0",
"read_version ~= 0.3.0",
"setuptools",
"wheel"
]
Expand Down Expand Up @@ -121,7 +121,7 @@ The Declarative Way

[build-system]
requires = [
"read_version[toml] ~= 0.2.0",
"read_version[toml] ~= 0.3.0",
"setuptools >= 42.0.0",
"wheel"
]
Expand Down
2 changes: 1 addition & 1 deletion read_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
Visit <https://github.com/jwodder/read_version> for more information.
"""

__version__ = '0.3.0.dev1'
__version__ = '0.3.0'
__author__ = 'John Thorvald Wodder II'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit 601a036

Please sign in to comment.