From 70d037886398351c32616bda1b4cc9f516a7e3d3 Mon Sep 17 00:00:00 2001 From: Kristian Holsheimer Date: Tue, 3 May 2022 21:13:12 +0100 Subject: [PATCH] v0.1.10 --- coax/__init__.py | 2 +- doc/release_notes.rst | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/coax/__init__.py b/coax/__init__.py index c69d682..169abdc 100644 --- a/coax/__init__.py +++ b/coax/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.9' +__version__ = '0.1.10' # expose specific classes and functions diff --git a/doc/release_notes.rst b/doc/release_notes.rst index d8fabed..493abb5 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -7,6 +7,13 @@ Upcoming - Bug fixes: `#16 `_ +v0.1.10 +------- + +- Upgrade dependencies. +- Replace old ``jax.ops.index*`` scatter operations with the new :attr:`jax.numpy.ndarray.at` interface. + + v0.1.9 ------