Skip to content

Commit

Permalink
Version 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jan 23, 2019
1 parent 64c2e9b commit 4665b77
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ wheels/
*.egg-info/
.installed.cfg
*.egg
pip-wheel-metadata/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
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
## 0.7.0

### Features

Expand Down Expand Up @@ -34,6 +34,7 @@ We used to have incremental versioning before `0.1.0`.
- Forbids to have useless `continue` nodes inside the loops
- Forbids to have useless nodes
- Forbids to have useless `raise` statements
- Adds `params` and `parameters` to black-listed names


### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ to understand how all components are bound together.

flake8->>Checker: flake8 runs our checker alongside with other plugins
Checker->>Transformation: Checker asks to perform different ast transformations before we actually start doing anything
Checker->>Visitor: Checker runs all visitors that are it is aware of
Checker->>Visitor: Checker runs all visitors that it is aware of
Visitor->>Violation: Visitors raise violations when they find bad code
Violation-->>flake8: Raised violations are shown to user by flake8

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api"

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

license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def test_statement_with_no_effect(
'call()',
'object.mro()',
'del some',
'some_var: int',
])
def test_statement_with_regular_effect(
assert_errors,
Expand Down
2 changes: 2 additions & 0 deletions wemake_python_styleguide/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
'objs',
'some',
'do',
'params',
'parameters',

# Confuseables:
'no',
Expand Down

0 comments on commit 4665b77

Please sign in to comment.