Skip to content

Commit

Permalink
Version 0.19.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Mar 26, 2024
1 parent 8670471 commit 99ba44e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ Semantic versioning in our case means:

## 0.19.1

This release fixes how `...` is used. For example, it is common to define
function stubs / protocols like this:

```python
def some_function(): ...
```

Now, `...` will be excluded from several rules.

### Bugfixes

- Fixes `TooDeepNestingViolation` not to trigger
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM python:3.11.5-alpine
LABEL maintainer="mail@sobolevn.me"
LABEL vendor="wemake.services"

ENV WPS_VERSION='0.19.0'
ENV WPS_VERSION='0.19.1'
ENV REVIEWDOG_VERSION='v0.17.2'

RUN apk add --no-cache bash git wget
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wemake-python-styleguide"
version = "0.19.0"
version = "0.19.1"
description = "The strictest and most opinionated python linter ever"

license = "MIT"
Expand Down

0 comments on commit 99ba44e

Please sign in to comment.