Skip to content

Commit

Permalink
v0.3.2 (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Oct 17, 2020
1 parent d2fe249 commit ef22306
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
6 changes: 6 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

0.3.2 (2020-10-17)
------------------

In-built pre-commit hooks for `black`, `flake8`, `mypy`, `isort`, `pyupgrade`, `doctest`, and `pylint` are
now available.

0.3.1 (2020-10-16)
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/pre-commit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Here's an example of what you could include in your ``.pre-commit-config.yaml``

repos:
- repo: https://github.com/nbQA-dev/nbQA
rev: 0.3.1
rev: 0.3.2
hooks:
- id: nbqa-black
- id: nbqa-isort
Expand All @@ -19,7 +19,7 @@ See `.pre-commit-hooks.yaml <https://github.com/nbQA-dev/nbQA/blob/master/.pre-c
If you have your own custom tool (e.g. ``customtool``) for which we currently don't have a built-in hook, you can define your own one with: ::

- repo: https://github.com/nbQA-dev/nbQA
rev: 0.3.1
rev: 0.3.2
hooks:
- id: nbqa
args: [customtool]
Expand Down
6 changes: 2 additions & 4 deletions nbqa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""Attributes used by in docs / packaging."""
"""Attributes used by docs / packaging."""

__author__ = """Marco Gorelli"""
__email__ = "m.e.gorelli@gmail.com"
__version__ = "0.3.1"
__version__ = "0.3.2"
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.2

[flake8]
ignore = E203,E503,W503,W504
max-line-length = 120
exclude = venv,.*

[darglint]
# temporarily disabling some 'missing parameter' errors as there's too many, will address them in the future
ignore = DAR101,DAR103,DAR201,DAR301
docstring_style=numpy
docstring_style = numpy

[pydocstyle]
add-ignore = D104
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/nbQA-dev/nbQA",
version="0.3.1",
version="0.3.2",
zip_safe=False,
)

0 comments on commit ef22306

Please sign in to comment.