From a06beaa1a2289a73518d5b40bbcdd2e8354a39c0 Mon Sep 17 00:00:00 2001 From: Skye Wanderman-Milne Date: Fri, 6 Oct 2023 17:20:34 -0700 Subject: [PATCH] Update versions post jax 0.4.18 release --- CHANGELOG.md | 8 ++++++-- jax/version.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b39f112e..491e4174d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,13 @@ Best viewed [here](https://jax.readthedocs.io/en/latest/changelog.html). Remember to align the itemized text with the first line of an item within a list. --> -# jax 0.4.18 +# jax 0.4.19 -# jaxlib 0.4.18 +# jaxlib 0.4.19 + +# jax 0.4.18 (Oct 6, 2023) + +# jaxlib 0.4.18 (Oct 6, 2023) * Changes * CUDA jaxlibs now depend on the user to install a compatible NCCL version. diff --git a/jax/version.py b/jax/version.py index e345d5fef..aeb05c007 100644 --- a/jax/version.py +++ b/jax/version.py @@ -21,7 +21,7 @@ import os import pathlib import subprocess -_version = "0.4.18" +_version = "0.4.19" # 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 diff --git a/setup.py b/setup.py index 78b0a9b69..93e7f36e4 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ project_name = 'jax' _current_jaxlib_version = '0.4.18' # The following should be updated with each new jaxlib release. -_latest_jaxlib_version_on_pypi = '0.4.17' +_latest_jaxlib_version_on_pypi = '0.4.18' _available_cuda11_cudnn_versions = ['86'] _default_cuda11_cudnn_version = '86' _default_cuda12_cudnn_version = '89'