Skip to content

Commit b8c7c44

Browse files
committed
Bump version
1 parent 45cb68d commit b8c7c44

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ You can use Docstringify in three modes:
2222
test is missing a docstring
2323
Hint:
2424
"""__description__"""
25-
25+
2626
test.say_hello is missing a docstring
2727
Hint:
2828
"""
2929
__description__
30-
30+
3131
Parameters
3232
----------
3333
name : str, default="World"
@@ -37,11 +37,11 @@ You can use Docstringify in three modes:
3737
3. Add docstring templates to source code files:
3838
```python
3939
"""__description__"""
40-
40+
4141
def say_hello(name: str = 'World') -> None:
4242
"""
4343
__description__
44-
44+
4545
Parameters
4646
----------
4747
name : str, default="World"
@@ -58,7 +58,7 @@ Add the following to your `.pre-commit-config.yaml` file to block commits with m
5858
5959
```yaml
6060
- repo: https://github.com/stefmolin/docstringify
61-
rev: 0.5.0
61+
rev: 0.5.1
6262
hooks:
6363
- id: docstringify
6464
```
@@ -67,7 +67,7 @@ By default, all docstrings are required. If you want to be more lenient, you can
6767

6868
```yaml
6969
- repo: https://github.com/stefmolin/docstringify
70-
rev: 0.5.0
70+
rev: 0.5.1
7171
hooks:
7272
- id: docstringify
7373
args: [--threshold=0.75]
@@ -77,7 +77,7 @@ If you would like to see suggested docstring templates (inferred from type annot
7777

7878
```yaml
7979
- repo: https://github.com/stefmolin/docstringify
80-
rev: 0.5.0
80+
rev: 0.5.1
8181
hooks:
8282
- id: docstringify
8383
args: [--suggest-changes=numpydoc]
@@ -87,7 +87,7 @@ Use `--make-changes` to create a copy of each file with docstring templates. Her
8787

8888
```yaml
8989
- repo: https://github.com/stefmolin/docstringify
90-
rev: 0.5.0
90+
rev: 0.5.1
9191
hooks:
9292
- id: docstringify
9393
args: [--make-changes=google]

src/docstringify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
type annotations.
44
"""
55

6-
__version__ = '0.5.0'
6+
__version__ = '0.5.1'

0 commit comments

Comments
 (0)