Skip to content

Commit

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

0.3.0 (2020-10-12)
------------------

Added support for `pylint` (thanks Girish Pasupathy!).
Fixed a false-positive in `black` when cells ended with trailing semicolons.
Fixed some false-positives in `flake8` regarding expected numbers of newlines.

0.2.3 (2020-10-06)
------------------

Expand All @@ -14,7 +21,7 @@ notebooks.
0.2.2 (2020-10-01)
------------------

Optimised handling cell-magics and improved support for indented in-line magics (thanks Girish Pasupathy !).
Optimised handling cell-magics and improved support for indented in-line magics (thanks Girish Pasupathy!).

0.2.1 (2020-09-27)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/pre-commit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and sort your imports using ``isort``, you could put the following in your ``.pr

repos:
- repo: 'https://github.com/nbQA-dev/nbQA'
rev: 0.2.3
rev: 0.3.0
hooks:
- id: nbqa
args:
Expand Down
2 changes: 1 addition & 1 deletion nbqa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Marco Gorelli"""
__email__ = "m.e.gorelli@gmail.com"
__version__ = "0.2.3"
__version__ = "0.3.0"
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.2.3
current_version = 0.3.0

[flake8]
ignore = E203,E503,W503,W504
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.2.3",
version="0.3.0",
zip_safe=False,
)

0 comments on commit e3e0848

Please sign in to comment.