Skip to content

Commit 386f04e

Browse files
committed
Version 0.3.0 release, closes #208
1 parent 46a7fc8 commit 386f04e

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We follow Semantic Versions since the `0.1.0` release.
44
We used to have incremental versioning before `0.1.0`.
55

66

7-
## WIP aka The Hacktoberfest Feast
7+
## 0.3.0 aka The Hacktoberfest Feast
88

99
This release was made possible by awesome people who contributed
1010
to the project during `#hactoberfest`. List of awesome people:
@@ -15,6 +15,11 @@ to the project during `#hactoberfest`. List of awesome people:
1515
- [@tipabu](https://github.com/tipabu)
1616
- [@roxe322](https://github.com/roxe322)
1717
- [@geoc0ld](https://github.com/geoc0ld)
18+
- [@lensvol](https://github.com/lensvol)
19+
- [@SheldonNunes ](https://github.com/SheldonNunes)
20+
- [@tommbee](https://github.com/tommbee)
21+
- [@valignatev](https://github.com/valignatev)
22+
- [@vsmaxim](https://github.com/vsmaxim)
1823

1924
### Features
2025

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ Make sure that you are familiar with [our API](https://wemake-python-styleguide.
2424

2525
We use `poetry` to manage the [dependencies](https://github.com/sdispater/poetry).
2626

27-
To install them you would need to run two commands:
27+
To install them you would need to run `install` command:
2828

2929
```bash
3030
poetry install
31-
poetry develop
3231
```
3332

3433
To activate your `virtualenv` run `poetry shell`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
---
1111

12-
Welcome to the most opinionated linter ever.
12+
Welcome to the most strict and opinionated python linter ever.
1313

1414
`wemake-python-styleguide` is actually a `flake8` plugin
1515
with some other plugins as dependencies.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "wemake-python-styleguide"
3-
version = "0.2.0"
4-
description = "The most opinionated linter ever, used by wemake.services"
3+
version = "0.3.0"
4+
description = "The most strict and opinionated python linter ever"
55

66
license = "MIT"
77

tests/test_checker/test_noqa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _assert_errors_count_in_output(output, errors):
2020

2121
def test_noqa_fixture_disabled(absolute_path):
2222
"""End-to-End test to check that all violations are present."""
23-
errors = {
23+
errors = { # TODO: list all possible errors except complexity
2424
'Z110': 2,
2525
'Z111': 1,
2626
'Z112': 1,

0 commit comments

Comments
 (0)