From ef95d500b277859497eb28ed5d79d28ace596766 Mon Sep 17 00:00:00 2001 From: Augusto Wagner Andreoli Date: Mon, 28 Jan 2019 13:58:28 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++++++ flake8_nitpick/__version__.py | 2 +- package.json | 2 +- pyproject.toml | 2 +- setup.cfg | 3 ++- 5 files changed, 47 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b430a42e..e2d35292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,45 @@ + +# [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)) + + + # [0.5.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.4.0...v0.5.0) (2019-01-09) diff --git a/flake8_nitpick/__version__.py b/flake8_nitpick/__version__.py index cc76b8a4..406cca02 100644 --- a/flake8_nitpick/__version__.py +++ b/flake8_nitpick/__version__.py @@ -1,2 +1,2 @@ """Package version.""" -__version__ = "0.5.0" +__version__ = "0.6.0" diff --git a/package.json b/package.json index 04203196..3f3f299f 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 895a5b4a..142701cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/setup.cfg b/setup.cfg index ed576e07..c56772bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.6.0 commit = False tag = False @@ -38,3 +38,4 @@ strict_optional = True warn_no_return = True warn_redundant_casts = True warn_unused_ignores = True +