Skip to content

Commit 92f6ed2

Browse files
authored
Update version to 1.16.1.post1 (#516)
1 parent 650cfa8 commit 92f6ed2

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
CHANGELOG
33
=========
44

5-
1.16.2.dev
6-
==========
5+
1.16.1.post1
6+
============
77

8-
* feature: Documentation: update TensorFlow README for Script Mode
8+
* Documentation: add documentation for Reinforcement Learning Estimator.
9+
* Documentation: update TensorFlow README for Script Mode
910

1011
1.16.1
1112
======

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __getattr__(cls, name):
3232
'numpy', 'scipy', 'scipy.sparse']
3333
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
3434

35-
version = '1.16.1'
35+
version = '1.16.1.post1'
3636
project = u'sagemaker'
3737

3838
# Add any Sphinx extension module names here, as strings. They can be extensions

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

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

2727
init = read(os.path.join(root, 'src/sagemaker', '__init__.py'))
2828
return version_re.search(init).group(1)

src/sagemaker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
from sagemaker.session import s3_input # noqa: F401
4040
from sagemaker.session import get_execution_role # noqa: F401
4141

42-
__version__ = '1.16.1'
42+
__version__ = '1.16.1.post1'

0 commit comments

Comments
 (0)