Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andykee committed Jun 29, 2020
1 parent ed9a601 commit f5b5a0a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Changes
=======

v0.2.0
------
Released June 29, 2020

* Collapse ``Detector`` and ``Image`` planes into single ``Image`` plane. The pupil to
image plane propagation method is now chosen based on whether the ``Image`` plane has
a defined ``pixelscale`` (propagate via matrix triple product DFT) or if
``pixelscale`` is None (propagate via FFT - eventually). ``Detector`` class has been
deprecated. `#5`_
* Deprecate ``FPA`` and ``BayerFPA``. Some functionality has been retained but converted
to atomic functions in the :ref:`detector<api-detector>` module. `#6`_
* Completely rework the contents of the :ref:`detector<api-detector>` module. All
objects have been deprecated. Some functionality has been retained but converted to
atomic functions instead. `#6`_
* Deprecate ``util.coordinates`
* Change the way ``Rotate`` angle is interpreted to behave more intuitively
* A number of small bugfixes and enhancements
* Updated documentation
* More unit tests

.. _#5: https://github.com/andykee/lentil/issues/5
.. _#6: https://github.com/andykee/lentil/issues/6

v0.1.1
------
Released June 21, 2020
Expand Down
2 changes: 1 addition & 1 deletion lentil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
if sys.hexversion < 0x030700F0:
raise ImportError('Lentil requires Python >= 3.7')

__version__ = '0.1.1'
__version__ = '0.2.0'

0 comments on commit f5b5a0a

Please sign in to comment.