From 82e74959fe9a05b933f6f5ec7dc60bc1c0deadcc Mon Sep 17 00:00:00 2001 From: Qiao Zhang Date: Fri, 9 Jul 2021 21:16:48 -0700 Subject: [PATCH] Update changelog for jaxlib-0.1.69. --- CHANGELOG.md | 5 ++++- jaxlib/version.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36359c9ed..850729628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/jaxlib/version.py b/jaxlib/version.py index 7db22089f..aea823c19 100644 --- a/jaxlib/version.py +++ b/jaxlib/version.py @@ -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" diff --git a/setup.py b/setup.py index c0c48d1e1..836d1b607 100644 --- a/setup.py +++ b/setup.py @@ -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',