Skip to content

Commit

Permalink
chore(release): 0.22.1 [skip ci]
Browse files Browse the repository at this point in the history
## [0.22.1](v0.22.0...v0.22.1) (2020-03-26)

### Bug Fixes

* broken build that didn't upload v0.22.0 to PyPI ([aaf2f06](aaf2f06))
  • Loading branch information
semantic-release-bot committed Mar 26, 2020
1 parent aaf2f06 commit 4dfcfa6
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/installation_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/targets.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion nitpick-style.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nitpick",
"version": "0.22.0",
"version": "0.22.1",
"repository": {
"type": "git",
"url": "https://github.com/andreoliwa/nitpick.git"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <andreoliwa@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.22.0
current_version = 0.22.1
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion src/nitpick/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Main module."""
__version__ = "0.22.0"
__version__ = "0.22.1"

0 comments on commit 4dfcfa6

Please sign in to comment.