Skip to content

Commit

Permalink
Update jaxlib version number to 0.1.76
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 415050863
  • Loading branch information
yashk2810 authored and jax authors committed Dec 8, 2021
1 parent a081f00 commit 1b5630e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jaxlib/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@
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:
exec(f.read(), _dct)
__version__ = _dct['__version__']
_minimum_jaxlib_version = _dct['_minimum_jaxlib_version']

_libtpu_version = '0.1.dev20211018'

setup(
name='jax',
version=__version__,
Expand Down

0 comments on commit 1b5630e

Please sign in to comment.