Skip to content

Commit ffb07cd

Browse files
committed
Update versions for v0.4.37 release.
1 parent 95892fd commit ffb07cd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.
1212

1313
## jax 0.4.37
1414

15+
This is a patch release of jax 0.4.36. Only "jax" was released at this version.
16+
1517
* Bug fixes
18+
* Fixed a bug where `jit` would error if an argument was named `f` (#25329).
1619
* Fix a bug that will throw `index out of range` error in
1720
{func}`jax.lax.while_loop` if the user register pytree node class with
1821
different aux data for the flatten and flatten_with_path.
22+
* Pinned a new libtpu release (0.0.6) that fixes a compiler bug on TPU v6e.
1923

2024
## jax 0.4.36 (Dec 5, 2024)
2125

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

+1-1
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.35'
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)