diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d06f023..c6592d602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/jaxlib/version.py b/jaxlib/version.py index 63bd41d3d..34e17cd2d 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.72" +__version__ = "0.1.73" diff --git a/setup.py b/setup.py index e34866669..046abe3a7 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.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',