Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Jan 28, 2019
1 parent 36bd5ba commit ef95d50
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 4 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
<a name="0.6.0"></a>
# [0.6.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.5.0...v0.6.0) (2019-01-28)


### build

* Ignore .tox dir on flake8 and isort ([462233e](https://github.com/andreoliwa/flake8-nitpick/commit/462233e))
* Update packages ([36bd5ba](https://github.com/andreoliwa/flake8-nitpick/commit/36bd5ba))

### ci

* Add code coverage with Coveralls (#5) ([3995e13](https://github.com/andreoliwa/flake8-nitpick/commit/3995e13))
* Fix Coveralls badge (point to master) ([bae533d](https://github.com/andreoliwa/flake8-nitpick/commit/bae533d))
* Run flake8 and pytest on Travis ([dbb6000](https://github.com/andreoliwa/flake8-nitpick/commit/dbb6000))

### docs

* Add more info to pyproject.toml ([1e0d1a2](https://github.com/andreoliwa/flake8-nitpick/commit/1e0d1a2))

### feat

* Configure comma separated values on the style file ([7ae6622](https://github.com/andreoliwa/flake8-nitpick/commit/7ae6622))
* Suggest poetry init when pyproject.toml does not exist ([366c2b6](https://github.com/andreoliwa/flake8-nitpick/commit/366c2b6))

### fix

* DeprecationWarning: Using or importing the ABCs from 'collections' in ([80f7e24](https://github.com/andreoliwa/flake8-nitpick/commit/80f7e24))

### style

* Ignore build dir on flake8 and isort ([1c18ce3](https://github.com/andreoliwa/flake8-nitpick/commit/1c18ce3))
* Ignore tox dir (flake8), set tests module as first party (isort) ([4fbad20](https://github.com/andreoliwa/flake8-nitpick/commit/4fbad20))

### test

* Comma separated keys on setup.cfg (flake8.ignore) ([b5d8ce7](https://github.com/andreoliwa/flake8-nitpick/commit/b5d8ce7))
* No main Python file on the root dir ([f67f870](https://github.com/andreoliwa/flake8-nitpick/commit/f67f870))
* Test a project with no root dir ([6ccf977](https://github.com/andreoliwa/flake8-nitpick/commit/6ccf977))
* Test most generic functions ([3704c9f](https://github.com/andreoliwa/flake8-nitpick/commit/3704c9f))



<a name="0.5.0"></a>
# [0.5.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.4.0...v0.5.0) (2019-01-09)

Expand Down
2 changes: 1 addition & 1 deletion flake8_nitpick/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package version."""
__version__ = "0.5.0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flake8-nitpick",
"version": "0.5.0",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "https://github.com/andreoliwa/flake8-nitpick.git"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line-length = 120

[tool.poetry]
name = "flake8-nitpick"
version = "0.5.0"
version = "0.6.0"
description = "Flake8 plugin to share the same code style for multiple Python projects"
authors = ["Augusto Wagner Andreoli <andreoliwa@gmail.com>"]
license = "MIT"
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.6.0
commit = False
tag = False

Expand Down Expand Up @@ -38,3 +38,4 @@ strict_optional = True
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True

0 comments on commit ef95d50

Please sign in to comment.