Skip to content

Commit 820f51d

Browse files
committed
Merge branch 'release/0.4.37' into main.
2 parents 978d35f + ffb07cd commit 820f51d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ Remember to align the itemized text with the first line of an item within a list
1010
When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
1111
-->
1212

13-
## jax 0.4.37
13+
## jax 0.4.38
14+
15+
## jax 0.4.37 (Dec 9, 2024)
16+
17+
This is a patch release of jax 0.4.36. Only "jax" was released at this version.
1418

1519
* Bug fixes
20+
* Fixed a bug where `jit` would error if an argument was named `f` (#25329).
1621
* Fix a bug that will throw `index out of range` error in
1722
{func}`jax.lax.while_loop` if the user register pytree node class with
1823
different aux data for the flatten and flatten_with_path.
24+
* Pinned a new libtpu release (0.0.6) that fixes a compiler bug on TPU v6e.
1925

2026
## jax 0.4.36 (Dec 5, 2024)
2127

jax/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pathlib
2222
import subprocess
2323

24-
_version = "0.4.37"
24+
_version = "0.4.38"
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# The following should be updated after each new jaxlib release.
2424
_latest_jaxlib_version_on_pypi = '0.4.36'
2525

26-
_libtpu_version = '0.0.5'
26+
_libtpu_version = '0.0.6'
2727
_libtpu_nightly_terminal_version = '0.1.dev20241010+nightly.cleanup'
2828

2929
def load_version_module(pkg_path):

0 commit comments

Comments
 (0)