From 4664e827e1dcf164fd08e2a3203e289743d68efb Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Fri, 4 Dec 2020 21:57:47 -0800 Subject: [PATCH] update version and changelog for pypi --- docs/CHANGELOG.rst | 18 ++++++++++++++++-- jax/version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index a3e6ad5d5604..c33df5eecd84 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -9,9 +9,23 @@ Change Log These are the release notes for JAX. -jax 0.2.7 (Unreleased) +jax 0.2.7 (Dec 4 2020) ---------------------- -* `GitHub commits `_. +* `GitHub commits `_. + +* New features: + + * Add ``jax.device_put_replicated`` + * Add multi-host support to ``jax.experimental.sharded_jit`` + * Add support for differentiating eigenvaleus computed by ``jax.numpy.linalg.eig`` + * Add support for building on Windows platforms + * Add support for general in_axes and out_axes in ``jax.pmap`` + * Add complex support for ``jax.numpy.linalg.slogdet`` + +* Bug fixes: + + * Fix higher-than-second order derivatives of ``jax.numpy.sinc`` at zero + * Fix some hard-to-hit bugs around symbolic zeros in transpose rules * Breaking changes: diff --git a/jax/version.py b/jax/version.py index 2bed03d94785..5c5edf724783 100644 --- a/jax/version.py +++ b/jax/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.6" +__version__ = "0.2.7"