Skip to content

Commit 6bd5dd2

Browse files
bump version 0.12.0 (#75)
* bump version * update setup.cfg with new format avoiding colons for py 3.14 * bump minor version instead of patch
1 parent 335dd85 commit 6bd5dd2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ pip install black==21.10b0 flake8==4.0.1 isort==5.10.1 mypy==0.910
2323

2424
```sh
2525
# pipenv
26-
pipenv install --dev "pysen[lint]==0.11.4"
26+
pipenv install --dev "pysen[lint]==0.12.0"
2727
# poetry
28-
poetry add -D pysen==0.11.4 -E lint
28+
poetry add -D pysen==0.12.0 -E lint
2929
```
3030

3131
## Quickstart: Set up linters using pysen

setup.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[flake8]
22
# automatically generated by pysen
33
# pysen ignores and overwrites any modifications
4-
# e203: black treats : as a binary operator
5-
# e231: black doesn't put a space after ,
6-
# e501: black may exceed the line-length to follow other style rules
7-
# e701: black will collapse ... only functions etc. to a single line
8-
# e704: black will collapse ... only functions etc. to a single line
9-
# w503 or w504: either one needs to be disabled to select w error codes
4+
# (e203) black treats colon as a binary operator
5+
# (e231) black doesn't put a space after ,
6+
# (e501) black may exceed the line-length to follow other style rules
7+
# (e701) black will collapse ... only functions etc. to a single line
8+
# (e704) black will collapse ... only functions etc. to a single line
9+
# (w503 or w504) either one needs to be disabled to select w error codes
1010
ignore = E203,E231,E501,E701,E704,W503
1111
max-line-length = 88
1212
select = B,B950,C,E,F,W

src/pysen/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.11.4"
1+
__version__ = "0.12.0"

0 commit comments

Comments
 (0)