Skip to content

Commit 1b5630e

Browse files
yashk2810jax authors
authored andcommitted
Update jaxlib version number to 0.1.76
PiperOrigin-RevId: 415050863
1 parent a081f00 commit 1b5630e

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ Remember to align the itemized text with the first line of an item within a list
88
PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
99
-->
1010

11-
## jaxlib 0.1.75 (Unreleased)
11+
## jaxlib 0.1.76 (Unreleased)
12+
13+
## jaxlib 0.1.75 (Dec 7, 2021)
14+
* New features:
15+
* Support for python 3.10.
1216

1317
## jax 0.2.26 (Unreleased)
1418
* [GitHub

jaxlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# reflect the most recent available binaries.
1818
# __version__ should be increased after releasing the current version
1919
# (i.e. on main, this is always the next version to be released).
20-
__version__ = "0.1.75"
20+
__version__ = "0.1.76"

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,19 @@
1515
from setuptools import setup, find_packages
1616

1717
# The following should be updated with each new jaxlib release.
18-
_current_jaxlib_version = '0.1.74'
18+
_current_jaxlib_version = '0.1.75'
1919
_available_cuda_versions = ['11']
2020
_default_cuda_version = '11'
2121
_available_cudnn_versions = ['82', '805']
2222
_default_cudnn_version = '82'
23+
_libtpu_version = '0.1.dev20211208'
2324

2425
_dct = {}
2526
with open('jax/version.py') as f:
2627
exec(f.read(), _dct)
2728
__version__ = _dct['__version__']
2829
_minimum_jaxlib_version = _dct['_minimum_jaxlib_version']
2930

30-
_libtpu_version = '0.1.dev20211018'
31-
3231
setup(
3332
name='jax',
3433
version=__version__,

0 commit comments

Comments
 (0)