diff --git a/CHANGELOG.md b/CHANGELOG.md index ed340e678..2ae69157f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,11 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK. * `jnp.unique` and other set-like operations now require array-like inputs ({jax-issue}`#7662`) +## jaxlib 0.1.71 (Sep 1, 2021) +* Breaking changes: + * Support for CUDA 11.0 and CUDA 10.1 has been dropped. Jaxlib now supports + CUDA 10.2 and CUDA 11.1+. + ## jax 0.2.19 (Aug 12, 2021) * [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.18...jax-v0.2.19). diff --git a/jaxlib/version.py b/jaxlib/version.py index 6358e3536..63bd41d3d 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.71" +__version__ = "0.1.72" diff --git a/setup.py b/setup.py index 8a72f6124..e34866669 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ from setuptools import setup, find_packages # The following should be updated with each new jaxlib release. -_current_jaxlib_version = '0.1.70' -_available_cuda_versions = ['101', '102', '110', '111'] +_current_jaxlib_version = '0.1.71' +_available_cuda_versions = ['102', '111'] _dct = {} with open('jax/version.py') as f: