diff --git a/CHANGELOG.md b/CHANGELOG.md index a2714e7d7..360360d22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Dockerfile b/Dockerfile index badd8deb5..1ab7b4635 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/README.md b/README.md index 8947f1b7d..176027105 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 93f7df83e..445f6f278 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"