Skip to content

Commit e43172e

Browse files
authored
Merge pull request #35 from krassowski/bump-version-0.13
Prepare release for v0.13
2 parents a254a49 + cab53d5 commit e43172e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77
On the fly conversion of Python docstrings to markdown
88

99
- Python 3.6+
10-
- currently can recognise reStructuredText and convert multiple of its features to Markdown
11-
- in the future will be able to convert Google docstrings too
10+
- can recognise reStructuredText and convert multiple of its features to Markdown
11+
- since v0.13 includes initial support for Google-formatted docstrings
1212

1313
### Installation
1414

1515
```bash
1616
pip install docstring-to-markdown
1717
```
1818

19-
2019
### Example
2120

2221
Convert reStructuredText:

docstring_to_markdown/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .google import google_to_markdown, looks_like_google
22
from .rst import looks_like_rst, rst_to_markdown
33

4-
__version__ = "0.12"
4+
__version__ = "0.13"
55

66

77
class UnknownFormatError(Exception):

0 commit comments

Comments
 (0)