Skip to content

Commit 8fc84ad

Browse files
committed
Prepare for JAX release 0.8.1
1 parent d8e9e28 commit 8fc84ad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.8.1
1818

1919
* New features:
2020

docs/pallas/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For the overall JAX change log see [here](https://docs.jax.dev/en/latest/changel
1111
Remember to align the itemized text with the first line of an item within a list.
1212
-->
1313

14-
## Unreleased
14+
## Released with jax 0.8.1
1515

1616
* New features:
1717

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.8.0'
155+
_minimum_jaxlib_version = '0.8.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.8.0'
22+
_current_jaxlib_version = '0.8.1'
2323
# The following should be updated after each new jaxlib release.
2424
_latest_jaxlib_version_on_pypi = '0.8.0'
2525

26-
_libtpu_version = '0.0.24.*'
26+
_libtpu_version = '0.0.30.*'
2727

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

0 commit comments

Comments
 (0)