Skip to content

Commit

Permalink
Version 0.13.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 10, 2019
1 parent 0b75174 commit f2ed168
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,25 @@ We follow Semantic Versions since the `0.1.0` release.
We used to have incremental versioning before `0.1.0`.


## 0.13.2 WIP
## 0.13.3 WIP


## 0.13.2

### Bugfixes

- Fixes that Github Action was failing for wrong status code
- Small typo in the documentation for pylint fixed
- Fixes `NegatedConditionsViolation` false positive on absent
`else` in combination with `elif`
- Fixes `WPS528` false positive on augmented assigns
- Fixes incorrect message for `WPS349`
- Fixes that `reviewdog` was not able to create more than `30` comments per PR

### Misc

- `pylint` docs fixed
- Fixes docs about implicit `yield` violation


## 0.13.1

Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM python:3.7-alpine
LABEL maintainer="[email protected]"
LABEL vendor="wemake.services"

ENV WPS_VERSION='0.13.1'
ENV WPS_VERSION='0.13.2'
ENV REVIEWDOG_VERSION='v0.9.14'

RUN apk add --no-cache bash git wget
Expand All @@ -29,7 +29,10 @@ RUN pip install "wemake-python-styleguide==$WPS_VERSION" \
&& wget -O - -q 'https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh' \
| sh -s -- -b /usr/local/bin/ "$REVIEWDOG_VERSION"

# Custom configuration for this action:
COPY ./scripts/action-config.cfg /

# Entrypoint:
COPY ./scripts/entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ style = "styles/nitpick-style-wemake.toml"

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

license = "MIT"
Expand Down

0 comments on commit f2ed168

Please sign in to comment.