Skip to content

Commit

Permalink
Version 0.16.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 13, 2021
1 parent a203c25 commit 430b2aa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ Semantic versioning in our case means:
change the client facing API, change code conventions significantly, etc.


## {{ Next Version }}
## 0.16.0

## Features

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

- Fixes that `InconsistentComprehensionViolation` was ignoring
misaligned `in` expressions #2075
- Fixes some common magic methods not being recognized as such #2281
- Fixes some common magic methods not being recognized as such #2281

### Misc

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


## 0.15.3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
# This image is also available on Dockerhub:
# https://hub.docker.com/r/wemakeservices/wemake-python-styleguide

FROM python:3.9.7-alpine
FROM python:3.9.9-alpine

LABEL maintainer="sobolevn@wemake.services"
LABEL vendor="wemake.services"

ENV WPS_VERSION='0.15.3'
ENV WPS_VERSION='0.16.0'
ENV REVIEWDOG_VERSION='v0.13.0'

RUN apk add --no-cache bash git wget
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ in the docs for examples and integrations.
We also support [GitHub Actions](https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/github-actions.html) as first class-citizens.
[Try it out](https://github.com/marketplace/actions/wemake-python-styleguide)!


## Strict is the new cool

Strict linting offers the following benefits to developers and companies:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ style = "styles/nitpick-style-wemake.toml"

[tool.poetry]
name = "wemake-python-styleguide"
version = "0.15.3"
version = "0.16.0"
description = "The strictest and most opinionated python linter ever"

license = "MIT"
Expand Down

0 comments on commit 430b2aa

Please sign in to comment.