Skip to content

Commit

Permalink
Version 0.3.0 release, closes #208
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Oct 27, 2018
1 parent 46a7fc8 commit 386f04e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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:
Expand All @@ -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

Expand Down
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions 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"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_checker/test_noqa.py
Expand Up @@ -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,
Expand Down

0 comments on commit 386f04e

Please sign in to comment.