Skip to content

Commit ff52aed

Browse files
committed
Update version numbers after release.
1 parent fd8de7d commit ff52aed

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ 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.38
13+
## Unreleased
14+
15+
## jax 0.4.38 (Dec 17, 2024)
1416

1517
* Changes:
1618
* `jax.tree.flatten_with_path` and `jax.tree.map_with_path` are added

jax/_src/tree_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def flatten_one_level_with_keys(
613613
tree: Any,
614614
) -> tuple[Iterable[KeyLeafPair], Hashable]:
615615
"""Flatten the given pytree node by one level, with keys."""
616-
out = default_registry.flatten_one_level_with_keys(tree)
616+
out = default_registry.flatten_one_level_with_keys(tree) # type: ignore
617617
if out is None:
618618
raise ValueError(f"can't tree-flatten type: {type(tree)}")
619619
else:

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.38"
24+
_version = "0.4.39"
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
@@ -21,7 +21,7 @@
2121

2222
_current_jaxlib_version = '0.4.38'
2323
# The following should be updated after each new jaxlib release.
24-
_latest_jaxlib_version_on_pypi = '0.4.36'
24+
_latest_jaxlib_version_on_pypi = '0.4.38'
2525

2626
_libtpu_version = '0.0.7'
2727
_libtpu_nightly_terminal_version = '0.1.dev20241010+nightly.cleanup'

0 commit comments

Comments
 (0)