Skip to content

Commit

Permalink
Release v0.2 (#327)
Browse files Browse the repository at this point in the history
* Release v0.2

* Update release log

* Update travis
  • Loading branch information
j1c committed Mar 3, 2020
1 parent 10598ca commit b9c96dd
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -23,7 +23,9 @@ deploy:
user: "j1c"
password:
secure: YlLbfPTKZuzhGECU3pYH3pOBdJnF59//e2Y3Ibg7IPbCYhGAwd4QG4fkKboLI5YMaR28CtpKwL7KrwWJpGfDfh+F+mvxalYHNp5xbM9+VHHGvPsabV2wHHmFIEKR1y2YkHW4fcfiELMjP9clVFJcXMzqOF4AAMLZJZpujVBxQLNk8YWapCHpwln6iGVj21iTMWOKTGRVPuRBf76hmGgqyJDftdJ52DCfR8d/6VL0EUh9iKrDN445gjT54EettyZfdSv/MhC7w9mg8Uhtf8qrAPn8/6Kt8QLKYpovFcm+qOPXkM8GiXRXAo70Yx9i/iORNCWHbwfzdmf3jUQ/Ea3XUuaCxBW3voA9ijMQQuYhtUFfO4oXyKyl1EUVjARORTVhlZKnoSfugv5zTyS+dqok5TGDJcMySHjSg6BzunDI2m5a1SPZVkB9dc3SYIonPPxvP/WzuvnRTmnn1GLRvS4RP+nQihGBcjJmAItvMDVmTkSkNufw1eBzjpZM78UXP0WAUPPSCrS+t9NwnZZPOCBoTpEhONtmBIPdq2e4zTdj+DfSvFfRX8UktgFg70ItrrGN9YTbN2VsVC9YDGOquQ549V5tc1k6t+Gp6VWRSzxKWwP9E7qvdYLMPkRd0bQIYQY7Gy1/3HFFP8dpulW3ITWPSGogCuNpmhkRqdRNztokvBg=
skip_existing: true
on:
branch: master
tags: true
repo: neurodata/graspy
python: '3.6'
5 changes: 5 additions & 0 deletions docs/news.rst
Expand Up @@ -3,6 +3,11 @@
Release Log
===========

GraSPy 0.2
----------
Release date: 02 Mar 2020
Supports Python 3.5, 3.6, and 3.7

GraSPy 0.1
----------
Release date: 05 Aug 2019
Expand Down
50 changes: 50 additions & 0 deletions docs/release/release_0.2.rst
@@ -0,0 +1,50 @@
Announcement: GraSPy 0.2
==========================

We're happy to announce the release of GraSPy 0.2! GraSPy is a Python package for
understanding the properties of random graphs that arise from modern datasets, such as
social networks and brain networks.

For more information, please visit our `website <http://graspy.neurodata.io/>`_
and our `tutorials <https://graspy.neurodata.io/tutorial.html>`_.


Highlights
----------
This release is the result of over 8 months of work with over 25 pull requests by
10 contributors. Highlights include:

- Added ``AutoGMMCluster`` in ``cluster`` submodule. ``AutoGMMCluster`` is Python equivalent to ``mclust`` in R.
- Added ``subgraph`` submodule, which detects vertices that maximally correlates to given features.
- Added ``match`` submodule. Used for matching vertices from a pair of graphs with unknown vertex correspondence.
- Added functions for simulating a pair of correlated ER and SBM graphs.

Improvements
------------
- Diagonal augmentation is default behavior in AdjacencySpectralEmbed.
- Added functionality in ``to_laplace`` to allow for directed graphs.
- Updated docstrings.
- Updated documentation website.
- Various bug fixes.

API Changes
-----------
- Added ``**kwargs`` argument for ``heatmap``.

Deprecations
------------
None

Contributors to this release
----------------------------
- `Jaewon Chung <https://github.com/j1c>`_
- `Benjamin Pedigo <https://github.com/bdpedigo>`_
- `Tommy Athey <https://github.com/tathey1>`_ (new contributor!)
- `Jayanta Dey <https://github.com/jdey4>`_ (new contributor!)
- `Iain Carmichael <https://github.com/idc9>`_ (new contributor!)
- `Shiyu Sun <https://github.com/shiyussy>`_ (new contributor!)
- `Ali Saad-Eldin <https://github.com/asaadeldin11>`_ (new contributor!)
- `Gun Kang <https://github.com/gkang7>`_ (new contributor!)
- `Shan Qiu <https://github.com/SHAAAAN>`_ (new contributor!)
- `Ben Falk <https://github.com/falkben>`_ (new contributor!)
- `Jennifer Heiko <https://github.com/jheiko1>`_ (new contributor!)
2 changes: 1 addition & 1 deletion graspy/__init__.py
Expand Up @@ -16,4 +16,4 @@
warnings.simplefilter("always", category=UserWarning)


__version__ = "0.1.1"
__version__ = "0.2.0"

0 comments on commit b9c96dd

Please sign in to comment.