Skip to content

Commit 25c16c0

Browse files
yashk2810jax authors
authored and
jax authors
committed
Finish jax and jaxlib 0.4.22 release
PiperOrigin-RevId: 590775311
1 parent 3380b9f commit 25c16c0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ Best viewed [here](https://jax.readthedocs.io/en/latest/changelog.html).
66
Remember to align the itemized text with the first line of an item within a list.
77
-->
88

9-
## jax 0.4.22
9+
## jax 0.4.23
10+
11+
## jaxlib 0.4.23
12+
13+
## jax 0.4.22 (Dec 13, 2023)
1014

1115
* Deprecations
1216
* The `device_buffer` and `device_buffers` properties of JAX arrays are deprecated.
@@ -15,7 +19,7 @@ Remember to align the itemized text with the first line of an item within a list
1519
* `arr.device_buffer` becomes `arr.addressable_data(0)`
1620
* `arr.device_buffers` becomes `[x.data for x in arr.addressable_shards]`
1721

18-
## jaxlib 0.4.22
22+
## jaxlib 0.4.22 (Dec 13, 2023)
1923

2024
## jax 0.4.21 (Dec 4 2023)
2125

Diff for: jax/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pathlib
2222
import subprocess
2323

24-
_version = "0.4.22"
24+
_version = "0.4.23"
2525
# The following line is overwritten by build scripts in distributions &
2626
# releases. Do not modify this manually, or jax/jaxlib build will fail.
2727
_release_version: str | None = None

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
_current_jaxlib_version = '0.4.22'
2626
# The following should be updated with each new jaxlib release.
27-
_latest_jaxlib_version_on_pypi = '0.4.21'
27+
_latest_jaxlib_version_on_pypi = '0.4.22'
2828
_available_cuda11_cudnn_versions = ['86']
2929
_default_cuda11_cudnn_version = '86'
3030
_default_cuda12_cudnn_version = '89'

0 commit comments

Comments
 (0)