diff --git a/CHANGELOG.md b/CHANGELOG.md index 243aacfb..8b2ada60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -## dev (requires minimum JupyterHub 0.9 and Python 3.5) +## v1.0 (requires minimum JupyterHub 0.9 and Python 3.5) Added (user) +* Add support for JupyterHub named servers. #167 * Add Jinja2 templating as an option for all scripts and commands. If '{{' or `{%` is used anywhere in the string, it is used as a jinja2 template. * Add new option exec_prefix, which defaults to `sudo -E -u {username}`. This replaces explicit `sudo` in every batch command - changes in local commands may be needed. * New option: `req_keepvars_extra`, which allows keeping extra variables in addition to what is defined by JupyterHub itself (addition of variables to keep instead of replacement). #99 diff --git a/version.py b/version.py index a046dc90..ec2001e5 100644 --- a/version.py +++ b/version.py @@ -5,7 +5,7 @@ 1, 0, 0, - 'rc0', # comment-out this line for a release +# 'rc0', # comment-out this line for a release ) __version__ = '.'.join(map(str, version_info))