Skip to content

Commit

Permalink
chore(release): 0.23.1 [skip ci]
Browse files Browse the repository at this point in the history
## [0.23.1](andreoliwa/nitpick@v0.23.0...v0.23.1) (2020-11-02)

### Bug Fixes

* upgrade toml to 0.10.2 (fixes [andreoliwa#200](andreoliwa#200)) ([3331e76](andreoliwa@3331e76))
  • Loading branch information
semantic-release-bot committed Nov 2, 2020
1 parent 46cb2f9 commit 90d6a12
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 22 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.23.1](https://github.com/andreoliwa/nitpick/compare/v0.23.0...v0.23.1) (2020-11-02)


### Bug Fixes

* upgrade toml to 0.10.2 (fixes [#200](https://github.com/andreoliwa/nitpick/issues/200)) ([3331e76](https://github.com/andreoliwa/nitpick/commit/3331e7621ccece6c2fb04aa0f50b802fd0a3367c))

# [0.23.0](https://github.com/andreoliwa/nitpick/compare/v0.22.2...v0.23.0) (2020-09-18)


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.23.0/nitpick-style.toml).
Nitpick will download and use the opinionated [default style file](https://raw.githubusercontent.com/andreoliwa/nitpick/v0.23.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.23.0
rev: v0.23.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.23.0"
version = "0.23.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.23.0
rev: v0.23.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.23.0/nitpick-style.toml
.. _default style file: https://raw.githubusercontent.com/andreoliwa/nitpick/v0.23.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.23.0/nitpick-style.toml
# https://raw.githubusercontent.com/andreoliwa/nitpick/v0.23.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.23.0",
"version": "0.23.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.23.0"
version = "0.23.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
26 changes: 13 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.23.0
current_version = 0.23.1
commit = False
tag = False

Expand Down Expand Up @@ -66,7 +66,7 @@ norecursedirs = .* build dist CVS _darcs {arch} *.egg venv var docs

[tox:tox]
isolated_build = True
requires =
requires =
tox-travis
tox-venv
tox-pyenv
Expand All @@ -76,12 +76,12 @@ envlist = clean,lint,py39,py38,py37,py36,py35,report
description = Run tests with pytest and coverage
deps = pytest-cov
extras = test
depends =
depends =
{py39,py38,py37,py36,py35}: clean
report: py39,py38,py37,py36,py35
setenv =
setenv =
PY_IGNORE_IMPORTMISMATCH = 1
commands =
commands =
python -m pip --version
python -m pytest --cov-config=setup.cfg --cov --cov-append --cov-report=term-missing --doctest-modules {posargs:-vv}

Expand All @@ -95,28 +95,28 @@ commands = coverage erase
description = Lint all files with pre-commit
basepython = python3.7
platform = linux|darwin
extras =
extras =
lint
test
deps =
deps =
pre-commit
safety
commands =
commands =
pre-commit run --all-files
safety check

[testenv:report]
description = Coverage report
skip_install = true
deps = coverage
commands =
commands =
coverage report
coverage html

[coverage:run]
branch = true
parallel = true
omit =
omit =
tests/*
.tox/*
/home/travis/virtualenv/*
Expand All @@ -135,12 +135,12 @@ sort = Cover
description = Build the HTML docs using Sphinx (sphinx-build, API docs, link checks)
basepython = python3.7
extras = doc
commands =
commands =
sphinx-apidoc --force --module-first --separate --implicit-namespaces --output-dir docs/source src/nitpick/
python3 docs/generate_rst.py

sphinx-build --color -b linkcheck docs "{toxworkdir}/docs_out"

sphinx-build -d "{toxworkdir}/docs_doctree" --color -b html docs "{toxworkdir}/docs_out" {posargs}

[bandit]
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.23.0"
__version__ = "0.23.1"

0 comments on commit 90d6a12

Please sign in to comment.