Skip to content

Commit

Permalink
Merge pull request #1613 from juhasch/bump_0.7.0
Browse files Browse the repository at this point in the history
Bump to version 0.7.0
  • Loading branch information
juhasch authored Nov 15, 2022
2 parents 80825cd + 8de69c5 commit 92bb755
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.7.0
commit = True
message = release {new_version}
tag = False
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@ readthedocs stuff gets all the shiny link goodness. Thanks!

Unreleased (aka. GitHub master)
-------------------------------
0.7.0
-----

- Remove dependency on latex_envs [#1603](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1603)
- Remove scripts entry in setup.py [#1612](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1612)
- Fix typos [#1604](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1604)

0.6.0
-----
- Fix CI
- Add license.txt in setup.cfg#
- Add license.txt in setup.cfg
- Fix Readme

0.5.3
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ universal = 1
ignore = 'I201,I101,D100,D101,D102,D103,D200,D201,D202,D203,D204,D205,D211,D400,D401,D403,N802,N806,'

[metadata]
license_file = LICENSE.txt
license_files = ['LICENSE.txt']

[isort]
not_skip = __init__.py
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ def main():
`the repository issues page <https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues>`_
if you encounter any problems, and create a new issue if needed!
""", # noqa: E501
version='0.6.0',
version='0.7.0',
author='ipython-contrib and jupyter-contrib developers',
author_email='[email protected]',
url=('https://github.com/'
'ipython-contrib/jupyter_contrib_nbextensions.git'),
download_url=('https://github.com/'
'ipython-contrib/jupyter_contrib_nbextensions'
'/tarball/0.6.0'),
'/tarball/0.7.0'),
keywords=['IPython', 'Jupyter', 'notebook'],
license='BSD',
platforms=['Any'],
Expand Down
2 changes: 1 addition & 1 deletion src/jupyter_contrib_nbextensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import jupyter_nbextensions_configurator

__version__ = '0.5.3'
__version__ = '0.7.0'


def _jupyter_server_extension_paths():
Expand Down

0 comments on commit 92bb755

Please sign in to comment.