Skip to content

Commit f105d1d

Browse files
committed
release 0.3.3
1 parent db25dcc commit f105d1d

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
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.3.2
2+
current_version = 0.3.3
33
commit = True
44
message = release {new_version}
55
tag = False

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ This is where each new PR to the project should add a summary of its changes,
2222
which makes it much easier to fill in each release's changelog :)
2323

2424

25+
0.3.3
26+
-----
27+
28+
- [#1128](https://github.com/ipython-contrib/pulls/1128)
29+
bugfix for notebook < 5.2.0, bugs introduced by
30+
[@jcb91](https://github.com/jcb91) in
31+
[#1123](https://github.com/ipython-contrib/pulls/1123)
32+
2533
0.3.2
2634
-----
2735

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

@@ -107,7 +115,6 @@ New features and bugfixes:
107115
* [#1121](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pulls/1121)
108116
[@jcb91](https://github.com/jcb91)
109117
correct toc tree construction
110-
111118
- `zenmode`
112119
[#1062](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pulls/1062)
113120
[@soamaven](https://github.com/soamaven)

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
# built documents.
4242
#
4343
# The short X.Y version.
44-
version = '0.3.2'
44+
version = '0.3.3'
4545
# The full version, including alpha/beta/rc tags.
46-
release = '0.3.2'
46+
release = '0.3.3'
4747

4848
# The suffix(es) of source filenames.
4949
# You can specify multiple suffix as a list of strings

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ def main():
4242
`the repository issues page <https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues>`_
4343
if you encounter any problems, and create a new issue if needed!
4444
""", # noqa: E501
45-
version='0.3.2',
45+
version='0.3.3',
4646
author='ipython-contrib and jupyter-contrib developers',
4747
author_email='[email protected]',
4848
url=('https://github.com/'
4949
'ipython-contrib/jupyter_contrib_nbextensions.git'),
5050
download_url=('https://github.com/'
5151
'ipython-contrib/jupyter_contrib_nbextensions'
52-
'/tarball/0.3.2'),
52+
'/tarball/0.3.3'),
5353
keywords=['IPython', 'Jupyter', 'notebook'],
5454
license='BSD',
5555
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.3.2'
7+
__version__ = '0.3.3'
88

99

1010
def _jupyter_server_extension_paths():

0 commit comments

Comments
 (0)