Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jul 17, 2022
1 parent 8b12b03 commit ea90049
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Here's an example of how to set up some pre-commit hooks: put this in your `.pre

```yaml
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.3.1
rev: 1.4.0
hooks:
- id: nbqa-black
- id: nbqa-pyupgrade
Expand Down
5 changes: 5 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

1.4.0 (2022-07-17)
~~~~~~~~~~~~~~~~~~
Added ``-nbqa-shell`` command (thanks @pwoolvett !).
Fixed entrypoint of ``pycodestyle`` hook (thanks @janosh !).

1.3.1 (2022-03-09)
~~~~~~~~~~~~~~~~~~
Fixed setup.cfg to mark than only Python3.7+ is supported.
Expand Down
6 changes: 3 additions & 3 deletions docs/pre-commit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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: 1.3.1
rev: 1.4.0
hooks:
- id: nbqa-black
additional_dependencies: [black==20.8b1]
Expand All @@ -31,7 +31,7 @@ Custom hooks
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: 1.3.1
rev: 1.4.0
hooks:
- id: nbqa
entry: nbqa customtool
Expand All @@ -49,7 +49,7 @@ To pass command line arguments, use the `pre-commit args <https://pre-commit.com

repos:
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.3.1
rev: 1.4.0
hooks:
- id: nbqa-pyupgrade
args: [--py38-plus]
Expand Down
2 changes: 1 addition & 1 deletion nbqa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Attributes used by docs / packaging."""

__version__ = "1.3.1"
__version__ = "1.4.0"

0 comments on commit ea90049

Please sign in to comment.