Skip to content

Commit

Permalink
release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jcb91 committed Oct 19, 2017
1 parent db25dcc commit f105d1d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 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.3.2
current_version = 0.3.3
commit = True
message = release {new_version}
tag = False
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ This is where each new PR to the project should add a summary of its changes,
which makes it much easier to fill in each release's changelog :)


0.3.3
-----

- [#1128](https://github.com/ipython-contrib/pulls/1128)
bugfix for notebook < 5.2.0, bugs introduced by
[@jcb91](https://github.com/jcb91) in
[#1123](https://github.com/ipython-contrib/pulls/1123)

0.3.2
-----

Expand All @@ -37,7 +45,7 @@ Repo-level stuff:
[@jcb91](https://github.com/jcb91)
test yaml files using jupyter_nbextensions_configurator to avoid any yaml
typos which may prevent nbextensions from getting installed.
- [#1103](https://github.com/ipython-contrib/pulls/1123)
- [#1103](https://github.com/ipython-contrib/pulls/1103)
[@Sukneet](https://github.com/Sukneet)
update add_buttons_group to use action instead of button

Expand Down Expand Up @@ -107,7 +115,6 @@ New features and bugfixes:
* [#1121](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pulls/1121)
[@jcb91](https://github.com/jcb91)
correct toc tree construction

- `zenmode`
[#1062](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pulls/1062)
[@soamaven](https://github.com/soamaven)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3.2'
version = '0.3.3'
# The full version, including alpha/beta/rc tags.
release = '0.3.2'
release = '0.3.3'

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of strings
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,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.3.2',
version='0.3.3',
author='ipython-contrib and jupyter-contrib developers',
author_email='jupytercontrib@gmail.com',
url=('https://github.com/'
'ipython-contrib/jupyter_contrib_nbextensions.git'),
download_url=('https://github.com/'
'ipython-contrib/jupyter_contrib_nbextensions'
'/tarball/0.3.2'),
'/tarball/0.3.3'),
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.3.2'
__version__ = '0.3.3'


def _jupyter_server_extension_paths():
Expand Down

0 comments on commit f105d1d

Please sign in to comment.