diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 45a3f40..46cc828 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True message = release {new_version} tag = False diff --git a/README.md b/README.md index 1a5a93f..b41d7f1 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,10 @@ For debugging, useful information can (sometimes) be found by: Changes ======= +0.6.2 +----- + * Fix marked.js + 0.6.1 ----- * Remove scripts from setup.py diff --git a/setup.py b/setup.py index 31804be..050714c 100755 --- a/setup.py +++ b/setup.py @@ -23,14 +23,14 @@ def main(): file, the interface also provides controls to configure the nbextensions' options. """, - version='0.6.1', + version='0.6.2', author='jcb91, jupyter-contrib developers', author_email='joshuacookebarnes@gmail.com', url=('https://github.com/' 'jupyter-contrib/jupyter_nbextensions_configurator'), download_url=('https://github.com/' 'jupyter-contrib/jupyter_nbextensions_configurator/' - 'tarball/0.6.1'), + 'tarball/0.6.2'), keywords=['Jupyter', 'notebook'], license='BSD 3-clause', platforms=['any'], diff --git a/src/jupyter_nbextensions_configurator/__init__.py b/src/jupyter_nbextensions_configurator/__init__.py index 59db5af..d6cef04 100644 --- a/src/jupyter_nbextensions_configurator/__init__.py +++ b/src/jupyter_nbextensions_configurator/__init__.py @@ -34,7 +34,7 @@ def json_errors(method): return method -__version__ = '0.6.1' +__version__ = '0.6.2' absolute_url_re = re.compile(r'^(f|ht)tps?://')