Skip to content

Commit

Permalink
Merge pull request #1385 from juhasch/update_051
Browse files Browse the repository at this point in the history
Update to 0.5.1
  • Loading branch information
juhasch authored Jan 1, 2019
2 parents 2422b76 + bf79ab3 commit 882fbb0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,16 @@ Unreleased (aka. GitHub master)
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 :)

- `gist_it` Making github endpoint configurable to support publishing gists to Github Enterprise
0.5.1
-----

- Fix for navigation hotkeys [#1378](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1378)
- `gist_it` Making github endpoint configurable to support publishing gists to Github Enterprise [#1364](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1364)
- Fix treefilter [#1359](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1359)
- Enable ruler extension in editor [#1296](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1296)
- Several spelling fixes

Travis/AppVeyor testing is currently broken due to outdated configuration. Will hopefully be working in 0.5.2 again.

0.5.0
-----
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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

Because this is a volunteer effort, we cannot provide support for all of the extensions.
So if you contribute a new extension, please stick around and help others using it.

## Create an issue

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.
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.5.0'
version = '0.5.1'
# The full version, including alpha/beta/rc tags.
release = '0.5.0'
release = '0.5.1'

# 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.5.0',
version='0.5.1',
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.5.0'),
'/tarball/0.5.1'),
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.0'
__version__ = '0.5.1'


def _jupyter_server_extension_paths():
Expand Down

0 comments on commit 882fbb0

Please sign in to comment.