Skip to content

Commit

Permalink
Merge pull request #35 from krassowski/bump-version-0.13
Browse files Browse the repository at this point in the history
Prepare release for v0.13
  • Loading branch information
krassowski authored Oct 11, 2023
2 parents a254a49 + cab53d5 commit e43172e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@
On the fly conversion of Python docstrings to markdown

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

### Installation

```bash
pip install docstring-to-markdown
```


### Example

Convert reStructuredText:
Expand Down
2 changes: 1 addition & 1 deletion docstring_to_markdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .google import google_to_markdown, looks_like_google
from .rst import looks_like_rst, rst_to_markdown

__version__ = "0.12"
__version__ = "0.13"


class UnknownFormatError(Exception):
Expand Down

0 comments on commit e43172e

Please sign in to comment.