From a851594a975cf7fa75881acc9f323b4865174cf5 Mon Sep 17 00:00:00 2001 From: Andy Kee Date: Mon, 7 Mar 2022 20:02:59 -0800 Subject: [PATCH] v0.7.0 --- CHANGES.rst | 14 ++++++++++++++ lentil/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index f3949c3..8baf1d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,20 @@ Release notes ============= +v0.7.0 +------ +Released March 7, 2022 + +* Fix complex amplitude sign flip introduced in `v0.6.0`_ +* Remove unused parameter from ``Wavefront.insert()`` function + signature `#42`_ +* Scipy compatibility - Fix Scipy map_coordinates import `#40`_ +* Python 3.9 compatibility - Ensure ``math.factorial()`` always + receives an int + +.. _#40: https://github.com/andykee/lentil/issues/40 +.. _#42: https://github.com/andykee/lentil/issues/42 + v0.6.0 ------ Released January 21, 2022 diff --git a/lentil/__init__.py b/lentil/__init__.py index f8259f2..8bab975 100644 --- a/lentil/__init__.py +++ b/lentil/__init__.py @@ -3,7 +3,7 @@ # # Copyright (c) 2021, California Institute of Technology ("Caltech"). U.S. # Government sponsorship acknowledged. -__version__ = '0.6.0' +__version__ = '0.7.0' from lentil.convolvable import jitter, smear