Skip to content

Commit

Permalink
Update versions for v0.4.37 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkinsp committed Dec 9, 2024
1 parent 95892fd commit ffb07cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.

## jax 0.4.37

This is a patch release of jax 0.4.36. Only "jax" was released at this version.

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

## jax 0.4.36 (Dec 5, 2024)

Expand Down
2 changes: 1 addition & 1 deletion jax/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import pathlib
import subprocess

_version = "0.4.36"
_version = "0.4.37"
# The following line is overwritten by build scripts in distributions &
# releases. Do not modify this manually, or jax/jaxlib build will fail.
_release_version: str | None = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# The following should be updated after each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.35'

_libtpu_version = '0.0.5'
_libtpu_version = '0.0.6'
_libtpu_nightly_terminal_version = '0.1.dev20241010+nightly.cleanup'

def load_version_module(pkg_path):
Expand Down

0 comments on commit ffb07cd

Please sign in to comment.