From c7485b7a192913db49269dfd03b4d18778a008f8 Mon Sep 17 00:00:00 2001 From: Skye Wanderman-Milne Date: Mon, 3 May 2021 16:32:00 -0700 Subject: [PATCH] Bump jax version and changelog for jax 0.1.13 release --- CHANGELOG.md | 31 +++++++++++++++++-------------- jax/version.py | 2 +- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb301ba45..e07ac9bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,23 @@ Remember to align the itemized text with the first line of an item within a list PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. --> -## jax 0.2.13 (unreleased) -* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.12...master). +## jax 0.2.14 (unreleased) +* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.13...master). + +## jaxlib 0.1.66 (unreleased) +* New features: + * CUDA 11.1 wheels are now supported on all CUDA 11 versions 11.1 or higher. + + NVidia now promises compatibility between CUDA minor releases starting with + CUDA 11.1. This means that JAX can release a single CUDA 11.1 wheel that + is compatible with CUDA 11.2 and 11.3. + + There is no longer a separate jaxlib release for CUDA 11.2 (or higher); use + the CUDA 11.1 wheel for those versions (cuda111). + * Added support for static keyword arguments to the C++ `jit` implementation. + +## jax 0.2.13 (May 3 2021) +* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.12...jax-v0.2.13). * New features: * When combined with jaxlib 0.1.66, {func}`jax.jit` now supports static keyword arguments. A new `static_argnames` option has been added to specify @@ -36,18 +51,6 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. * Fixed assertion failure in {func}`jax2tf.call_tf` when used with captured `tf.Variable` ({jax-issue}`#6572`). -## jaxlib 0.1.66 (unreleased) -* New features: - * CUDA 11.1 wheels are now supported on all CUDA 11 versions 11.1 or higher. - - NVidia now promises compatibility between CUDA minor releases starting with - CUDA 11.1. This means that JAX can release a single CUDA 11.1 wheel that - is compatible with CUDA 11.2 and 11.3. - - There is no longer a separate jaxlib release for CUDA 11.2 (or higher); use - the CUDA 11.1 wheel for those versions (cuda111). - * Added support for static keyword arguments to the C++ `jit` implementation. - ## jaxlib 0.1.65 (April 7 2021) ## jax 0.2.12 (April 1 2021) diff --git a/jax/version.py b/jax/version.py index 90dcc86e6..eeb2527b4 100644 --- a/jax/version.py +++ b/jax/version.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.12" +__version__ = "0.2.13" _minimum_jaxlib_version = "0.1.65"