Skip to content

Commit 92bb755

Browse files
authored
Merge pull request #1613 from juhasch/bump_0.7.0
Bump to version 0.7.0
2 parents 80825cd + 8de69c5 commit 92bb755

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.0
2+
current_version = 0.7.0
33
commit = True
44
message = release {new_version}
55
tag = False

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,17 @@ readthedocs stuff gets all the shiny link goodness. Thanks!
1717

1818
Unreleased (aka. GitHub master)
1919
-------------------------------
20+
0.7.0
21+
-----
22+
23+
- Remove dependency on latex_envs [#1603](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1603)
24+
- Remove scripts entry in setup.py [#1612](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1612)
25+
- Fix typos [#1604](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1604)
2026

2127
0.6.0
2228
-----
2329
- Fix CI
24-
- Add license.txt in setup.cfg#
30+
- Add license.txt in setup.cfg
2531
- Fix Readme
2632

2733
0.5.3

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ universal = 1
55
ignore = 'I201,I101,D100,D101,D102,D103,D200,D201,D202,D203,D204,D205,D211,D400,D401,D403,N802,N806,'
66

77
[metadata]
8-
license_file = LICENSE.txt
8+
license_files = ['LICENSE.txt']
99

1010
[isort]
1111
not_skip = __init__.py

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ def main():
4040
`the repository issues page <https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues>`_
4141
if you encounter any problems, and create a new issue if needed!
4242
""", # noqa: E501
43-
version='0.6.0',
43+
version='0.7.0',
4444
author='ipython-contrib and jupyter-contrib developers',
4545
author_email='[email protected]',
4646
url=('https://github.com/'
4747
'ipython-contrib/jupyter_contrib_nbextensions.git'),
4848
download_url=('https://github.com/'
4949
'ipython-contrib/jupyter_contrib_nbextensions'
50-
'/tarball/0.6.0'),
50+
'/tarball/0.7.0'),
5151
keywords=['IPython', 'Jupyter', 'notebook'],
5252
license='BSD',
5353
platforms=['Any'],

src/jupyter_contrib_nbextensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import jupyter_nbextensions_configurator
66

7-
__version__ = '0.5.3'
7+
__version__ = '0.7.0'
88

99

1010
def _jupyter_server_extension_paths():

0 commit comments

Comments
 (0)