10BC0 Update version to 1.16.1.post1 by nadiaya · Pull Request #516 · aws/sagemaker-python-sdk · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions CHANGELOG.rst
Original file line number 10BC0 Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
CHANGELOG
=========

1.16.2.dev
==========
1.16.1.post1
============

* feature: Documentation: update TensorFlow README for Script Mode
* Documentation: add documentation for Reinforcement Learning Estimator.
* Documentation: update TensorFlow README for Script Mode

1.16.1
======
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.1'
version = '1.16.1.post1'
project = u'sagemaker'

# Add any Sphinx extension module names here, as strings. They can be extensions
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

def get_version():
root = os.path.dirname(__file__)
version_re = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
version_re = re.compile(r'''__version__ = ['"]([0-9.]+((post|dev)\d+)?)['"]''')

init = read(os.path.join(root, 'src/sagemaker', '__init__.py'))
return version_re.search(init).group(1)
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
from sagemaker.session import s3_input # noqa: F401
from sagemaker.session import get_execution_role # noqa: F401

__version__ = '1.16.1'
__version__ = '1.16.1.post1'
0