Skip to content

Commit 326b8cf

Browse files
authored
Version 1.3.0 release (#3488)
1 parent 2d0c910 commit 326b8cf

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ Semantic versioning in our case means:
1717
change the client facing API, change code conventions significantly, etc.
1818

1919

20-
## 1.3.0 WIP
21-
20+
## 1.3.0
2221

2322
### Features
24-
- Adds more names to `WPS110`: `spam`, `ham`, `tmp`, `temp`, `arr`
2523

26-
## 1.2.1
24+
- Adds more names to `WPS110`: `spam`, `ham`, `tmp`, `temp`, `arr`
2725

2826
### Bugfixes
2927

30-
- Fixes `WPS243` to use number of statements in `finally` body instead of a number of lines, #3458
28+
- Fixes `WPS243` to use number of statements in `finally` body
29+
instead of a number of lines, #3458
30+
3131

3232
## 1.2.0
3333

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM python:3.13.5-alpine
2020
LABEL maintainer="[email protected]"
2121
LABEL vendor="wemake.services"
2222

23-
ENV WPS_VERSION='1.2.0'
23+
ENV WPS_VERSION='1.3.0'
2424
ENV REVIEWDOG_VERSION='v0.20.3'
2525

2626
RUN apk add --no-cache bash git wget

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "poetry-core>=2.0" ]
44

55
[project]
66
name = "wemake-python-styleguide"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
description = "The strictest and most opinionated python linter ever"
99

1010
license = {text = "MIT"}

wemake_python_styleguide/violations/complexity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,6 +1427,8 @@ class TooLongFinallyBodyViolation(ASTViolation):
14271427
https://peps.python.org/pep-0765
14281428
14291429
.. versionadded:: 1.2.0
1430+
.. versionchanged:: 1.3.0
1431+
Now we count statements in ``finally``, not physical lines.
14301432
14311433
"""
14321434

wemake_python_styleguide/violations/naming.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,8 @@ class WrongVariableNameViolation(ASTViolation):
327327
:py:data:`~wemake_python_styleguide.constants.VARIABLE_NAMES_BLACKLIST`.
328328
329329
.. versionadded:: 0.1.0
330+
.. versionchanged:: 1.3.0
331+
Added more names: ``spam``, ``ham``, ``tmp``, ``temp``, ``arr``
330332
331333
"""
332334

0 commit comments

Comments
 (0)