Skip to content

Commit 430b2aa

Browse files
committed
Version 0.16.0 release
1 parent a203c25 commit 430b2aa

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

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

1919

20-
## {{ Next Version }}
20+
## 0.16.0
2121

2222
## Features
2323

24+
- Supports new `flake8` version `4.x`
2425
- Now `InconsistentYieldViolation` and `InconsistentReturnViolation` are raised
2526
when `yield` or `return` is used with `None`
2627
where plain version should be used #2151
@@ -38,16 +39,17 @@ Semantic versioning in our case means:
3839

3940
- Fixes that `InconsistentComprehensionViolation` was ignoring
4041
misaligned `in` expressions #2075
41-
- Fixes some common magic methods not being recognized as such #2281
42+
- Fixes some common magic methods not being recognized as such #2281
4243

4344
### Misc
4445

4546
- Removes all `Raises:` from docstrings, they were unused
46-
- Added example to README.md
47+
- Added example to `README.md`
4748
- Added `why strict is good`
48-
- Replaced all `python` with `Python` in README.md
49-
- Improve Docs: Fixed all typos and grammatical errors in CHANGELOG
49+
- Replaced all `python` with `Python` in `README.md`
50+
- Improve Docs: Fixed all typos and grammatical errors in `CHANGELOG.md`
5051
- Updated documentation with the recommended `isort` config. #1934
52+
- Updates `typing_extensions` to `4.x`
5153

5254

5355
## 0.15.3

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
# This image is also available on Dockerhub:
1616
# https://hub.docker.com/r/wemakeservices/wemake-python-styleguide
1717

18-
FROM python:3.9.7-alpine
18+
FROM python:3.9.9-alpine
1919

2020
LABEL maintainer="[email protected]"
2121
LABEL vendor="wemake.services"
2222

23-
ENV WPS_VERSION='0.15.3'
23+
ENV WPS_VERSION='0.16.0'
2424
ENV REVIEWDOG_VERSION='v0.13.0'
2525

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ in the docs for examples and integrations.
5656
We also support [GitHub Actions](https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/github-actions.html) as first class-citizens.
5757
[Try it out](https://github.com/marketplace/actions/wemake-python-styleguide)!
5858

59+
5960
## Strict is the new cool
6061

6162
Strict linting offers the following benefits to developers and companies:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ style = "styles/nitpick-style-wemake.toml"
88

99
[tool.poetry]
1010
name = "wemake-python-styleguide"
11-
version = "0.15.3"
11+
version = "0.16.0"
1212
description = "The strictest and most opinionated python linter ever"
1313

1414
license = "MIT"

0 commit comments

Comments
 (0)