diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c0108aff --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include AUTHORS LICENSE CONTRIBUTING* CODE_OF_CONDUCT* Makefile* MANIFEST.in setup* README.* +recursive-include doc * +recursive-include examples * diff --git a/doc/users/release_notes.rst b/doc/users/release_notes.rst index f9573af8..cb348b8f 100644 --- a/doc/users/release_notes.rst +++ b/doc/users/release_notes.rst @@ -9,8 +9,8 @@ Release Notes **pulse2percept 0.6 was the last version to support Python <= 3.5.** pulse2percept 0.7+ requires Python 3.6+. -v0.7.1 (2021, planned) ----------------------- +v0.7.1 (2021-06-21) +------------------- New features ~~~~~~~~~~~~ @@ -20,7 +20,9 @@ New features Maintenance ~~~~~~~~~~~ -* Speed up :py:meth:`pulse2percept.implants.ElectrodeArray.plot` that is used by all implants (:pull:`375`) +* Various implant usability and speed upgrades (:pull:`375`, :pull:`382`, :pull:`383`, :pull:`386`) +* Various stimulus usability and speed upgrades (:pull:`382`, :pull:`383`, :pull:`384`, :pull:`385`) +* Refactor common Cython functions and move them into a ``utils._fast_math`` submodule (:pull:`382`) * Further speed up the :py:class:`~pulse2percept.models.AxonMapModel` build process (:pull:`369`) * Improve documentation and usability of various :py:class:`~pulse2percept.models.AxonMapModel` methods (:pull:`370`) * Disallow lambda<10 for :py:class:`~pulse2percept.models.AxonMapModel` (:pull:`370`) @@ -30,6 +32,7 @@ Maintenance Bug fixes ~~~~~~~~~ +* Fix naming convention for :py:class:`~pulse2percept.implants.BVT24` electrodes (:pull:`380`) * Fix issues with plotting and animating :py:class:`~pulse2percept.percepts.Percept` (:pull:`379`) * Fix inconsistencies and missing parameters in the [Nanduri2012]_ dataset (:pull:`376`) * Fix :py:meth:`pulse2percept.models.AxonMapModel.plot` for left eyes (:pull:`367`) diff --git a/pulse2percept/version.py b/pulse2percept/version.py index c9620a85..f0788a87 100644 --- a/pulse2percept/version.py +++ b/pulse2percept/version.py @@ -1 +1 @@ -__version__ = '0.7.1.dev0' +__version__ = '0.7.1'