Skip to content

Commit 882fbb0

Browse files
authored
Merge pull request ipython-contrib#1385 from juhasch/update_051
Update to 0.5.1
2 parents 2422b76 + bf79ab3 commit 882fbb0

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@ Unreleased (aka. GitHub master)
2121
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

24-
- `gist_it` Making github endpoint configurable to support publishing gists to Github Enterprise
24+
0.5.1
25+
-----
26+
27+
- Fix for navigation hotkeys [#1378](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1378)
28+
- `gist_it` Making github endpoint configurable to support publishing gists to Github Enterprise [#1364](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1364)
29+
- Fix treefilter [#1359](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1359)
30+
- Enable ruler extension in editor [#1296](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1296)
31+
- Several spelling fixes
32+
33+
Travis/AppVeyor testing is currently broken due to outdated configuration. Will hopefully be working in 0.5.2 again.
2534

2635
0.5.0
2736
-----

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
We are super happy that you intend to contribute to the nbextensions! You can discuss improvements in issues and implement them in pull requests.
44

5+
Because this is a volunteer effort, we cannot provide support for all of the extensions.
6+
So if you contribute a new extension, please stick around and help others using it.
7+
58
## Create an issue
69

710
Do not hesitate to open up an issue, you can discuss bugs, improvements or new extensions in them. Creating an issue is a good starting point for code contributions. The community can support you with experience of similar extensions, pros and cons, what to look for etc.

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.5.0'
44+
version = '0.5.1'
4545
# The full version, including alpha/beta/rc tags.
46-
release = '0.5.0'
46+
release = '0.5.1'
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.5.0',
45+
version='0.5.1',
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.5.0'),
52+
'/tarball/0.5.1'),
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.5.0'
7+
__version__ = '0.5.1'
88

99

1010
def _jupyter_server_extension_paths():

0 commit comments

Comments
 (0)