From a6e0e77624b761d60d3f05daa4af240e8bf68a20 Mon Sep 17 00:00:00 2001 From: Skye Wanderman-Milne Date: Tue, 11 Oct 2022 21:37:53 +0000 Subject: [PATCH] Update version.py, setup.py and CHANGELOG post jax 0.3.22 release --- CHANGELOG.md | 10 ++++++---- jax/version.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f91ffb4f..8e35a3cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,11 @@ Remember to align the itemized text with the first line of an item within a list PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK. --> -## jax 0.3.22 -* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.21...main). +## jax 0.3.23 + +## jaxlib 0.3.23 + +## jax 0.3.22 (Oct 11, 2022) * Changes * Add `JAX_PLATFORMS=tpu,cpu` as default setting in TPU initialization, so JAX will raise an error if TPU cannot be initialized instead of falling @@ -20,8 +23,7 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK. * Several test utilities deprecated in JAX v0.3.8 are now removed from {mod}`jax.test_util`. -## jaxlib 0.3.22 -* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.20...main). +## jaxlib 0.3.22 (Oct 11, 2022) ## jax 0.3.21 (Sep 30, 2022) * [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.20...jax-v0.3.21). diff --git a/jax/version.py b/jax/version.py index 85ea746b2..0ab818815 100644 --- a/jax/version.py +++ b/jax/version.py @@ -15,7 +15,7 @@ # This file is included as part of both jax and jaxlib. It is also # eval()-ed by setup.py, so it should not have any dependencies. -__version__ = "0.3.22" +__version__ = "0.3.23" _minimum_jaxlib_version = "0.3.15" def _version_as_tuple(version_str): diff --git a/setup.py b/setup.py index d44361d94..6edd791db 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools import setup, find_packages _current_jaxlib_version = '0.3.22' # The following should be updated with each new jaxlib release. -_latest_jaxlib_version_on_pypi = '0.3.20' +_latest_jaxlib_version_on_pypi = '0.3.22' _available_cuda_versions = ['11'] _default_cuda_version = '11' _available_cudnn_versions = ['82', '805']