Skip to content

Commit 56695e8

Browse files
committed
Bump version to 0.7.0
1 parent 80825cd commit 56695e8

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@ readthedocs stuff gets all the shiny link goodness. Thanks!
1717

1818
Unreleased (aka. GitHub master)
1919
-------------------------------
20+
0.7.0
21+
-----
2022

23+
- Remove dependency on latex_envs
24+
- Remove scripts entry in setup.py
25+
2126
0.6.0
2227
-----
2328
- Fix CI
24-
- Add license.txt in setup.cfg#
29+
- Add license.txt in setup.cfg
2530
- Fix Readme
2631

2732
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)