Skip to content

Commit

Permalink
Prepare release 0.2.1 (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulupo authored Apr 8, 2020
1 parent 8f23103 commit ec79478
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/library.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ What's new

.. include::
release.rst
:start-after: Release 0.2.0
:end-before: Release 0.1.4
:start-after: Release 0.2.1
:end-before: Release 0.2.0
39 changes: 39 additions & 0 deletions doc/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,45 @@ Release Notes

.. _stable:

*************
Release 0.2.1
*************

Major Features and Improvements
===============================

- The theory glossary has been improved to include the notions of vectorization, kernel and amplitude for persistence diagrams.
- The ``ripser`` function in ``gtda.externals.python.ripser_interface`` no longer uses scikit-learn's ``pairwise_distances`` when
``metric`` is ``'precomputed'``, thus allowing square arrays with negative entries or infinities to be passed.
- ``check_point_clouds`` in ``gtda.utils.validation`` now checks for square array input when the input should be a collection of
distance-type matrices. Warnings guide the user to correctly setting the ``distance_matrices`` parameter. ``force_all_finite=False``
no longer means accepting NaN input (only infinite input is accepted).
- ``VietorisRipsPersistence`` in ``gtda.homology.simplicial`` no longer masks out infinite entries in the input to be fed to
``ripser``.
- The docstrings for ``check_point_clouds`` and ``VietorisRipsPersistence`` have been improved to reflect these changes and the
extra level of generality for ``ripser``.

Bug Fixes
=========

- The variable used to indicate the location of Boost headers has been renamed from ``Boost_INCLUDE_DIR`` to ``Boost_INCLUDE_DIRS``
to address developer installation issues in some Linux systems.

Backwards-Incompatible Changes
==============================

- The keyword parameter ``distance_matrix`` in ``check_point_clouds`` has been renamed to ``distance_matrices``.

Thanks to our Contributors
==========================

This release contains contributions from many people:

Umberto Lupo, Anibal Medina-Mardones, Julian Burella Pérez, Guillaume Tauzin, and Wojciech Reise.

We are also grateful to all who filed issues or helped resolve them, asked and answered questions, and were part of
inspiring discussions.

*************
Release 0.2.0
*************
Expand Down
2 changes: 1 addition & 1 deletion gtda/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = '0.2.0'
__version__ = '0.2.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/giotto-ai/giotto-tda'
LICENSE = 'GNU AGPLv3'
DOWNLOAD_URL = 'https://github.com/giotto-ai/giotto-tda/tarball/v0.2.0'
DOWNLOAD_URL = 'https://github.com/giotto-ai/giotto-tda/tarball/v0.2.1'
VERSION = __version__ # noqa
CLASSIFIERS = ['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
Expand Down

0 comments on commit ec79478

Please sign in to comment.