diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3ab41cdb45..17eb8856db 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'