diff --git a/CHANGELOG.md b/CHANGELOG.md index cad457014..d722923cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ We follow Semantic Versions since the `0.1.0` release. We used to have incremental versioning before `0.1.0`. -## WIP aka The Hacktoberfest Feast +## 0.3.0 aka The Hacktoberfest Feast This release was made possible by awesome people who contributed to the project during `#hactoberfest`. List of awesome people: @@ -15,6 +15,11 @@ to the project during `#hactoberfest`. List of awesome people: - [@tipabu](https://github.com/tipabu) - [@roxe322](https://github.com/roxe322) - [@geoc0ld](https://github.com/geoc0ld) +- [@lensvol](https://github.com/lensvol) +- [@SheldonNunes ](https://github.com/SheldonNunes) +- [@tommbee](https://github.com/tommbee) +- [@valignatev](https://github.com/valignatev) +- [@vsmaxim](https://github.com/vsmaxim) ### Features diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8601afd4c..1b9153798 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,11 +24,10 @@ Make sure that you are familiar with [our API](https://wemake-python-styleguide. We use `poetry` to manage the [dependencies](https://github.com/sdispater/poetry). -To install them you would need to run two commands: +To install them you would need to run `install` command: ```bash poetry install -poetry develop ``` To activate your `virtualenv` run `poetry shell`. diff --git a/README.md b/README.md index 23b1c4ab8..2605e8f77 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ --- -Welcome to the most opinionated linter ever. +Welcome to the most strict and opinionated python linter ever. `wemake-python-styleguide` is actually a `flake8` plugin with some other plugins as dependencies. diff --git a/pyproject.toml b/pyproject.toml index f5b7093c1..e14354eb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "wemake-python-styleguide" -version = "0.2.0" -description = "The most opinionated linter ever, used by wemake.services" +version = "0.3.0" +description = "The most strict and opinionated python linter ever" license = "MIT" diff --git a/tests/test_checker/test_noqa.py b/tests/test_checker/test_noqa.py index cdc4ec4ca..70d40a575 100644 --- a/tests/test_checker/test_noqa.py +++ b/tests/test_checker/test_noqa.py @@ -20,7 +20,7 @@ def _assert_errors_count_in_output(output, errors): def test_noqa_fixture_disabled(absolute_path): """End-to-End test to check that all violations are present.""" - errors = { + errors = { # TODO: list all possible errors except complexity 'Z110': 2, 'Z111': 1, 'Z112': 1,