Skip to content

Commit 33b61f7

Browse files
committed
Bump version
1 parent a7aa963 commit 33b61f7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docstring_to_markdown/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from .rst import looks_like_rst, rst_to_markdown
22

3+
__version__ = "0.3"
4+
35

46
class UnknownFormatError(Exception):
57
pass

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers =
1818
project_urls =
1919
Bug Tracker = https://github.com/krassowski/docstring-to-markdown/issues
2020
Source Code = https://github.com/krassowski/docstring-to-markdown
21+
version = attr: package.__version__
2122

2223
[options]
2324
packages = find:

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
import setuptools
22

3-
setuptools.setup(
4-
version=0.2
5-
)
3+
setuptools.setup()

0 commit comments

Comments
 (0)