diff --git a/CHANGELOG.md b/CHANGELOG.md index 6550a2597..fff392326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,9 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. * Breaking changes: * The minimum jaxlib version is now 0.1.62. -## jaxlib 0.1.63 (Unreleased) +## jaxlib 0.1.64 (unreleased) + +## jaxlib 0.1.63 (March 17 2021) ## jax 0.2.10 (March 5 2021) diff --git a/README.md b/README.md index ed98d6f80..738b0318f 100644 --- a/README.md +++ b/README.md @@ -422,7 +422,7 @@ Next, run ```bash pip install --upgrade pip -pip install --upgrade jax jaxlib==0.1.62+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html +pip install --upgrade jax jaxlib==0.1.63+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html ``` The jaxlib version must correspond to the version of the existing CUDA diff --git a/jaxlib/version.py b/jaxlib/version.py index b6d3fa7e3..7b9a83197 100644 --- a/jaxlib/version.py +++ b/jaxlib/version.py @@ -14,4 +14,4 @@ # This should be increased after releasing the current version (i.e. this # is always the next version to be released). -__version__ = "0.1.63" +__version__ = "0.1.64" diff --git a/setup.py b/setup.py index 4572cde35..78ff8ef55 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import setup, find_packages __version__ = None _minimum_jaxlib_version = '0.1.62' -_current_jaxlib_version = '0.1.62' +_current_jaxlib_version = '0.1.63' _available_cuda_versions = ['101', '102', '110', '111', '112'] with open('jax/version.py') as f: