diff --git a/CHANGES.rst b/CHANGES.rst index aeca7c3..718f344 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,20 @@ Changes ======= +v0.1.1 +------ +Released June 21, 2020 + +* Update ``propagate`` to support :class:`~lentil.Tilt` planes `#1`_ +* Streamline the innards of :func:`~lentil.propagate` +* Update :func:`lentil.wfe.power_spectrum` to return phases with a slightly more correct + RMS +* Remove unused code +* Increase unit testing coverage +* Set up Travis CI, Coveralls + +.. _#1: https://github.com/andykee/lentil/issues/1 + v0.1.0 ------ Released June 12, 2020 diff --git a/lentil/__init__.py b/lentil/__init__.py index 7dd09de..fc791f3 100644 --- a/lentil/__init__.py +++ b/lentil/__init__.py @@ -15,4 +15,4 @@ if sys.hexversion < 0x030700F0: raise ImportError('Lentil requires Python >= 3.7') -__version__ = '0.1.0' +__version__ = '0.1.1'