diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ab15a600a9f..847452f09ca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,11 @@ Remember to align the itemized text with the first line of an item within a list PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK. --> -## jaxlib 0.1.75 (Unreleased) +## jaxlib 0.1.76 (Unreleased) + +## jaxlib 0.1.75 (Dec 7, 2021) +* New features: + * Support for python 3.10. ## jax 0.2.26 (Unreleased) * [GitHub diff --git a/jaxlib/version.py b/jaxlib/version.py index d7aa159555c3..ace1d6eb7ba7 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.75" +__version__ = "0.1.76" diff --git a/setup.py b/setup.py index 2fe0352871b0..e40c7e137e9d 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,12 @@ from setuptools import setup, find_packages # The following should be updated with each new jaxlib release. -_current_jaxlib_version = '0.1.74' +_current_jaxlib_version = '0.1.75' _available_cuda_versions = ['11'] _default_cuda_version = '11' _available_cudnn_versions = ['82', '805'] _default_cudnn_version = '82' +_libtpu_version = '0.1.dev20211208' _dct = {} with open('jax/version.py') as f: @@ -27,8 +28,6 @@ __version__ = _dct['__version__'] _minimum_jaxlib_version = _dct['_minimum_jaxlib_version'] -_libtpu_version = '0.1.dev20211018' - setup( name='jax', version=__version__,