From c3824b694c3cfab1c2c0690a267500b579a221a0 Mon Sep 17 00:00:00 2001 From: Luciano Resende Date: Sun, 27 May 2018 21:03:26 -0700 Subject: [PATCH] Jupyter Enterprise Gateway 0.9.1 release --- Makefile | 2 +- enterprise_gateway/_version.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 35ad69348..2b64b6583 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ SA:=source activate ENV:=enterprise-gateway-dev SHELL:=/bin/bash -VERSION:=1.0.0.dev0 +VERSION:=0.9.1 WHEEL_FILE:=dist/jupyter_enterprise_gateway-$(VERSION)-py2.py3-none-any.whl WHEEL_FILES:=$(shell find . -type f ! -path "./build/*" ! -path "./etc/*" ! -path "./docs/*" ! -path "./.git/*" ! -path "./.idea/*" ! -path "./dist/*" ! -path "./.image-enterprise-gateway" ! -path "./.image-nb2kg" ! -path "./.image-yarn-spark" ) diff --git a/enterprise_gateway/_version.py b/enterprise_gateway/_version.py index ae8f0bdf1..02c80f778 100644 --- a/enterprise_gateway/_version.py +++ b/enterprise_gateway/_version.py @@ -4,10 +4,9 @@ # Distributed under the terms of the Modified BSD License. version_info = ( - 1, 0, - 0, - 'dev0' + 9, + 1 ) __version__ = '.'.join(map(str, version_info))