From ff0cdae24b2defd74c599f2f4cfad07e948aa865 Mon Sep 17 00:00:00 2001 From: Jonathan Esterhazy Date: Mon, 19 Nov 2018 18:54:51 -0800 Subject: [PATCH] Bump version to 1.15.1 --- CHANGELOG.rst | 5 +++-- doc/conf.py | 2 +- src/sagemaker/__init__.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6afdf8f4c9..938ede5837 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,9 +2,10 @@ CHANGELOG ========= -1.15.1dev -========= +1.15.1 +====== +* enhancement: Local Mode: add explicit pull for serving * feature: Estimators: dependencies attribute allows export of additional libraries into the container * feature: Add APIs to export Airflow transform and deploy config * bug-fix: Allow code_location argument to be S3 URI in training_config API diff --git a/doc/conf.py b/doc/conf.py index 0ca952e33a..150ca9d28c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -32,7 +32,7 @@ def __getattr__(cls, name): 'numpy', 'scipy', 'scipy.sparse'] sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) -version = '1.15.0' +version = '1.15.1' project = u'sagemaker' # Add any Sphinx extension module names here, as strings. They can be extensions diff --git a/src/sagemaker/__init__.py b/src/sagemaker/__init__.py index da2c848b54..30d5cdb3ec 100644 --- a/src/sagemaker/__init__.py +++ b/src/sagemaker/__init__.py @@ -37,4 +37,4 @@ from sagemaker.session import s3_input # noqa: F401 from sagemaker.session import get_execution_role # noqa: F401 -__version__ = '1.15.0' +__version__ = '1.15.1'