Update the version numbers after JAX release.

PiperOrigin-RevId: 446092433
This commit is contained in:
Yash Katariya 2022-05-02 19:50:38 -07:00 committed by jax authors
parent 634f58c7d5
commit 888e5c6958
2 changed files with 8 additions and 3 deletions

View File

@ -8,12 +8,17 @@ Remember to align the itemized text with the first line of an item within a list
PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
-->
## jax 0.3.9 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.8...main).
## jax 0.3.10 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.9...main).
## jaxlib 0.3.8 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.7...main).
## jax 0.3.9 (May 2, 2022)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.8...jax-v0.3.9).
* Changes
* Added support for fully asynchronous checkpointing for GlobalDeviceArray.
## jax 0.3.8 (April 29 2022)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.7...jax-v0.3.8).
* Changes

View File

@ -15,7 +15,7 @@
def _version_as_tuple(version_str):
return tuple(int(i) for i in version_str.split(".") if i.isdigit())
__version__ = "0.3.9"
__version__ = "0.3.10"
__version_info__ = _version_as_tuple(__version__)
_minimum_jaxlib_version = "0.3.7"