Skip to content

Commit

Permalink
update release notes and version (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampan501 authored Apr 29, 2020
1 parent 4547cc8 commit 185ddac
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ v0.1.0
| **Release date:** 25 February 2020
| **Supports:** Python 3.5+.
| :doc:`release/0.1.0-release`.
v0.1.0
------
| **Release date:** 28 April 2020
| **Supports:** Python 3.6+.
| :doc:`release/0.1.1-release`.
54 changes: 54 additions & 0 deletions docs/release/0.1.1-release.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
hyppo v0.1.1 Release Notes
==========================

.. contents::

hyppo 0.1.1 does not include any new features, just removal of extraneous
features.

Release highlights:

- Kernel matrices calculated once before calculating p-values
- Pearson, Kendall, and Spearman are no longer tests

This release requires Python 3.6+.

Improvements
------------

Independence testing
^^^^^^^^^^^^^^^^^^^^
Null distribution added as a class atribute. Calculate kernel once before
calculating p-value.

*k*-sample testing
^^^^^^^^^^^^^^^^^^
Null distribution added as a class atribute. Calculate kernel once before
calculating p-value. Upper and lower-case inputs are available for ``indep_test``.

Time series
^^^^^^^^^^^
Reference docs and tutorials added to Time Series module.

Other changes
-------------
OS/Software requirements and license changes updated in ReadME. ``pairwise_distances``
from ``sklearn`` used instead of ``cdist`` from ``scipy``.

Removed features
----------------
Pearson, Spearman, and Kendall are no longer tests within the package. arXiv
badge added to docs. Python 3.5 no longer supported.

Authors
=======

This release contains work by the following people (contributed at least
one patch to this release, names in alphabetical order by last name):

* Ronak Mehta +
* Sambit Panda
* Bijan Varjavand +

A total of 3 people contributed to this release.
People with a "+" by their names contributed a patch for the first time.
2 changes: 1 addition & 1 deletion hyppo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
import hyppo.sims
import hyppo.discrim

__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def check_python_version():
author_email=AUTHOR_EMAIL,
install_requires=REQUIRED_PACKAGES,
url=URL,
license="MIT",
license="Apache 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit 185ddac

Please sign in to comment.