Skip to content

Commit afbe0b6

Browse files
esonghoricopybara-github
authored andcommitted
Update documents for 0.19.0 release.
PiperOrigin-RevId: 591006295 Change-Id: I185060a39cef048af1d13be8bee4543a0abb407f
1 parent 13e0550 commit afbe0b6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ but can have issues due to upstream libraries being in flux. The table below
176176
lists the version(s) of TensorFlow that align with each TF Agents' release.
177177
Release versions of interest:
178178

179+
* 0.19.0 supports tensorflow-2.15.0.
179180
* 0.18.0 dropped Python 3.8 support.
180181
* 0.16.0 is the first version to support Python 3.11.
181182
* 0.15.0 is the last release compatible with Python 3.7.
@@ -186,6 +187,7 @@ Release versions of interest:
186187
Release | Branch / Tag | TensorFlow Version | dm-reverb Version
187188
------- | ---------------------------------------------------------- | ------------------ | -----------
188189
Nightly | [master](https://github.com/tensorflow/agents) | tf-nightly | dm-reverb-nightly
190+
0.19.0 | [v0.19.0](https://github.com/tensorflow/agents/tree/v0.19.0) | 2.15.0 | 0.14.0
189191
0.18.0 | [v0.18.0](https://github.com/tensorflow/agents/tree/v0.18.0) | 2.14.0 | 0.13.0
190192
0.17.0 | [v0.17.0](https://github.com/tensorflow/agents/tree/v0.17.0) | 2.13.0 | 0.12.0
191193
0.16.0 | [v0.16.0](https://github.com/tensorflow/agents/tree/v0.16.0) | 2.12.0 | 0.11.0

docs/overview.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ pip install --user tf-agents[reverb]
3232
# Use this tag get the matching examples and colabs.
3333
$ git clone https://github.com/tensorflow/agents.git
3434
$ cd agents
35-
$ git checkout v0.18.0
35+
$ git checkout v0.19.0
3636
```
3737

3838
If you want to install TF-Agents with versions of Tensorflow or
@@ -98,6 +98,7 @@ but can have issues due to upstream libraries being in flux. The table below
9898
lists the version(s) of TensorFlow that align with each TF Agents' release.
9999
Release versions of interest:
100100

101+
* 0.19.0 supports tensorflow-2.15.0.
101102
* 0.18.0 dropped Python 3.8 support.
102103
* 0.16.0 is the first version to support Python 3.11.
103104
* 0.15.0 is the last release compatible with Python 3.7.
@@ -108,6 +109,7 @@ Release versions of interest:
108109
Release | Branch / Tag | TensorFlow Version | dm-reverb Version
109110
------- | ---------------------------------------------------------- | ------------------ | -----------
110111
Nightly | [master](https://github.com/tensorflow/agents) | tf-nightly | dm-reverb-nightly
112+
0.19.0 | [v0.19.0](https://github.com/tensorflow/agents/tree/v0.19.0) | 2.15.0 | 0.14.0
111113
0.18.0 | [v0.18.0](https://github.com/tensorflow/agents/tree/v0.18.0) | 2.14.0 | 0.13.0
112114
0.17.0 | [v0.17.0](https://github.com/tensorflow/agents/tree/v0.17.0) | 2.13.0 | 0.12.0
113115
0.16.0 | [v0.16.0](https://github.com/tensorflow/agents/tree/v0.16.0) | 2.12.0 | 0.11.0

tf_agents/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# We follow Semantic Versioning (https://semver.org/)
1919
_MAJOR_VERSION = '0'
20-
_MINOR_VERSION = '19'
20+
_MINOR_VERSION = '20'
2121
_PATCH_VERSION = '0'
2222

2323
# When building releases, we can update this value on the release branch to
@@ -26,7 +26,7 @@
2626
# release branch, the current version is by default assumed to be a
2727
# 'development' version, labeled 'dev'.
2828
_DEV_SUFFIX = 'dev'
29-
_REL_SUFFIX = 'rc0'
29+
_REL_SUFFIX = ''
3030

3131
# Example, '0.10.0rc0'
3232
__version__ = '.'.join([

0 commit comments

Comments
 (0)