Skip to content

Commit

Permalink
Version 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jun 4, 2020
1 parent a58ccf2 commit 39b5ed3
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/misspell.yml
@@ -0,0 +1,19 @@
name: misspell

on:
schedule:
- cron: '0 0 * * *'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: sobolevn/misspell-fixer-action@0.1.0
- uses: peter-evans/create-pull-request@v2.4.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Fixes by misspell-fixer'
title: 'Typos fix by misspell-fixer'
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -20,7 +20,7 @@ script:
- poetry run pytest
- poetry check
- poetry run pip check
- poetry run safety check --bare --full-report
- poetry run safety check --full-report

after_success:
- pip install coveralls
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,13 @@
We follow Semantic Versions since the `0.1.0` release.


## 0.4.0

### Features

- Adds `python3.5` support


## 0.3.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "flake8-eradicate"
version = "0.3.0"
version = "0.4.0"
description = "Flake8 plugin to find commented out code"

license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -47,6 +47,7 @@ addopts =
# isort configuration:
# https://github.com/timothycrosley/isort/wiki/isort-Settings
include_trailing_comma = true
use_parentheses = true
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
# Is the same as 80 in flake8:
Expand Down

0 comments on commit 39b5ed3

Please sign in to comment.