From 4dfcfa6f46f6e4c882dcc4888cc955979a081a74 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 26 Mar 2020 02:37:34 +0000 Subject: [PATCH] chore(release): 0.22.1 [skip ci] ## [0.22.1](https://github.com/andreoliwa/nitpick/compare/v0.22.0...v0.22.1) (2020-03-26) ### Bug Fixes * broken build that didn't upload v0.22.0 to PyPI ([aaf2f06](https://github.com/andreoliwa/nitpick/commit/aaf2f06c7c563bd1388ebeb03a575b52461c6625)) --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- docs/conf.py | 2 +- docs/installation_guide.rst | 2 +- docs/targets.rst | 2 +- nitpick-style.toml | 2 +- package.json | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- src/nitpick/__init__.py | 2 +- 10 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36e433a9..2240df79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.22.1](https://github.com/andreoliwa/nitpick/compare/v0.22.0...v0.22.1) (2020-03-26) + + +### Bug Fixes + +* broken build that didn't upload v0.22.0 to PyPI ([aaf2f06](https://github.com/andreoliwa/nitpick/commit/aaf2f06c7c563bd1388ebeb03a575b52461c6625)) + # [0.22.0](https://github.com/andreoliwa/nitpick/compare/v0.21.4...v0.22.0) (2020-03-26) diff --git a/README.md b/README.md index 6aac7071..9257d2b9 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ To try the package, simply install it (in a virtualenv or globally) and run `fla $ flake8 . -Nitpick will download and use the opinionated [default style file](https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.0/nitpick-style.toml). +Nitpick will download and use the opinionated [default style file](https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.1/nitpick-style.toml). You can use it as a template to configure your own style. @@ -70,7 +70,7 @@ If you use [pre-commit](https://pre-commit.com/) on your project (you should), a repos: - repo: https://github.com/andreoliwa/nitpick - rev: v0.22.0 + rev: v0.22.1 hooks: - id: nitpick diff --git a/docs/conf.py b/docs/conf.py index 329c863a..1e7111f2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ author = "W. Augusto Andreoli" # The short X.Y version -version = "0.22.0" +version = "0.22.1" # The full version, including alpha/beta/rc tags release = version diff --git a/docs/installation_guide.rst b/docs/installation_guide.rst index 9e8aaa27..195b1e32 100644 --- a/docs/installation_guide.rst +++ b/docs/installation_guide.rst @@ -35,7 +35,7 @@ If you use pre-commit_ on your project (you should), add this to the ``.pre-comm repos: - repo: https://github.com/andreoliwa/nitpick - rev: v0.22.0 + rev: v0.22.1 hooks: - id: nitpick diff --git a/docs/targets.rst b/docs/targets.rst index 5aa90e1b..0f7c6f38 100644 --- a/docs/targets.rst +++ b/docs/targets.rst @@ -1,5 +1,5 @@ .. _nitpick-style.toml: -.. _default style file: https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.0/nitpick-style.toml +.. _default style file: https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.1/nitpick-style.toml .. _black: https://github.com/psf/black .. _Django: https://www.djangoproject.com diff --git a/nitpick-style.toml b/nitpick-style.toml index dc3ca658..5f4bad2b 100644 --- a/nitpick-style.toml +++ b/nitpick-style.toml @@ -1,5 +1,5 @@ # Default style file for nitpick -# https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.0/nitpick-style.toml +# https://raw.githubusercontent.com/andreoliwa/nitpick/v0.22.1/nitpick-style.toml [nitpick] minimum_version = "0.10.0" diff --git a/package.json b/package.json index efd2454e..6aa554b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nitpick", - "version": "0.22.0", + "version": "0.22.1", "repository": { "type": "git", "url": "https://github.com/andreoliwa/nitpick.git" diff --git a/pyproject.toml b/pyproject.toml index 3b655ec9..0e8a97f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ line-length = 120 [tool.poetry] name = "nitpick" -version = "0.22.0" +version = "0.22.1" description = "Flake8 plugin to enforce the same lint configuration (flake8, isort, mypy, pylint) across multiple Python projects" authors = ["W. Augusto Andreoli "] license = "MIT" diff --git a/setup.cfg b/setup.cfg index 5b6a4f0c..b3b503bb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.22.0 +current_version = 0.22.1 commit = False tag = False diff --git a/src/nitpick/__init__.py b/src/nitpick/__init__.py index 24e0d54c..47bf296f 100644 --- a/src/nitpick/__init__.py +++ b/src/nitpick/__init__.py @@ -1,2 +1,2 @@ """Main module.""" -__version__ = "0.22.0" +__version__ = "0.22.1"