From bf967d88d8c060b4b9b82559a53c51fc2e9abeb3 Mon Sep 17 00:00:00 2001 From: Yash Katariya Date: Mon, 9 Aug 2021 16:37:15 -0700 Subject: [PATCH] Upgrade versions after jaxlib release PiperOrigin-RevId: 389753047 --- CHANGELOG.md | 2 +- jaxlib/version.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f540d0063..23801f218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK. need to use a dimension size in array computation, e.g., `jnp.mean`. ({jax-issue}`#7317`) -## jaxlib 0.1.70 (unreleased) +## jaxlib 0.1.70 (Aug 9, 2021) * Breaking changes: * Support for Python 3.6 has been dropped, per the [deprecation policy](https://jax.readthedocs.io/en/latest/deprecation.html). diff --git a/jaxlib/version.py b/jaxlib/version.py index aea823c19..6358e3536 100644 --- a/jaxlib/version.py +++ b/jaxlib/version.py @@ -17,4 +17,4 @@ # reflect the most recent available binaries. # __version__ should be increased after releasing the current version # (i.e. on main, this is always the next version to be released). -__version__ = "0.1.70" +__version__ = "0.1.71" diff --git a/setup.py b/setup.py index 4fe0a50b6..0ac948196 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import setup, find_packages # The following should be updated with each new jaxlib release. -_current_jaxlib_version = '0.1.69' +_current_jaxlib_version = '0.1.70' _available_cuda_versions = ['101', '102', '110', '111'] _dct = {} @@ -24,7 +24,7 @@ with open('jax/version.py') as f: __version__ = _dct['__version__'] _minimum_jaxlib_version = _dct['_minimum_jaxlib_version'] -_libtpu_version = '0.1.dev20210709' +_libtpu_version = '0.1.dev20210809' setup( name='jax',