Skip to content

Commit 382506f

Browse files
committed
Prepare for jax release v0.6.1
1 parent 5f764b5 commit 382506f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Remember to align the itemized text with the first line of an item within a list
1414
When releasing, please add the new-release-boilerplate to docs/pallas/CHANGELOG.md.
1515
-->
1616

17-
## Unreleased
17+
## JAX 0.6.1
1818

1919
* New features:
2020
* Added {func}`jax.lax.axis_size` which returns the size of the mapped axis

jax/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def make_release_tree(self, base_dir, files):
152152

153153

154154
__version__ = _get_version_string()
155-
_minimum_jaxlib_version = "0.6.0"
155+
_minimum_jaxlib_version = "0.6.1"
156156

157157
def _version_as_tuple(version_str):
158158
return tuple(int(i) for i in version_str.split(".") if i.isdigit())

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
project_name = 'jax'
2121

22-
_current_jaxlib_version = '0.6.0'
22+
_current_jaxlib_version = '0.6.1'
2323
# The following should be updated after each new jaxlib release.
2424
_latest_jaxlib_version_on_pypi = '0.6.0'
2525

26-
_libtpu_version = '0.0.13.*'
26+
_libtpu_version = '0.0.15.*'
2727

2828
def load_version_module(pkg_path):
2929
spec = importlib.util.spec_from_file_location(

0 commit comments

Comments
 (0)