Update changelog for jaxlib-0.1.69.

This commit is contained in:
Qiao Zhang 2021-07-09 21:16:48 -07:00
parent 24df92c61e
commit 82e74959fe
3 changed files with 7 additions and 4 deletions

View File

@ -16,7 +16,10 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
not used with invalid `axis` value, or with an empty reduction dimension.
({jax-issue}`#7196`)
## jaxlib 0.1.69 (unreleased)
## jaxlib 0.1.70 (unreleased)
## jaxlib 0.1.69 (July 9 2021)
* Fix bugs in TFRT CPU backend that results in incorrect results.
## jax 0.2.17 (July 9 2021)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.16...jax-v0.2.17).

View File

@ -17,4 +17,4 @@
# reflect the most recent available binaries.
# __version__ should be increased after releasing the current version
# (i.e. on main, this is always the next version to be released).
__version__ = "0.1.69"
__version__ = "0.1.70"

View File

@ -15,7 +15,7 @@
from setuptools import setup, find_packages
# The following should be updated with each new jaxlib release.
_current_jaxlib_version = '0.1.68'
_current_jaxlib_version = '0.1.69'
_available_cuda_versions = ['101', '102', '110', '111']
_dct = {}
@ -24,7 +24,7 @@ with open('jax/version.py') as f:
__version__ = _dct['__version__']
_minimum_jaxlib_version = _dct['_minimum_jaxlib_version']
_libtpu_version = '0.1.dev20210615'
_libtpu_version = '0.1.dev20210709'
setup(
name='jax',