Update CHANGELOG and verson numbers for jaxlib 0.1.72 release

This commit is contained in:
Skye Wanderman-Milne 2021-10-12 17:37:29 -07:00
parent d8b7bd54be
commit 0072c32546
3 changed files with 7 additions and 3 deletions

View File

@ -40,6 +40,10 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
the `--experimental_cpp_pmap` flag (or `JAX_CPP_PMAP` environment variable).
* `jax.numpy.unique` now supports an optional `fill_value` argument ({jax-issue}`#8121`)
## jaxlib 0.1.73 (Unreleased)
## jaxlib 0.1.72 (Oct 12, 2021)
## jax 0.2.21 (Sept 23, 2021)
* [GitHub
commits](https://github.com/google/jax/compare/jax-v0.2.20...jax-v0.2.21).

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.72"
__version__ = "0.1.73"

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.71'
_current_jaxlib_version = '0.1.72'
_available_cuda_versions = ['102', '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.dev20210809'
_libtpu_version = '0.1.dev20211012'
setup(
name='jax',