Skip to content

Commit

Permalink
v0.1 Release (#252)
Browse files Browse the repository at this point in the history
* Update docs for new version

* Upgrade to v0.1
  • Loading branch information
j1c authored Aug 6, 2019
1 parent 15e90f8 commit b47082a
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Release Log
===========

GraSPy 0.1
----------
Release date: 05 Aug 2019
Supports Python 3.5, 3.6, and 3.7

Release notes
~~~~~~~~~~~~~
See :doc:`release/release_0.1`.

GraSPy 0.0.3
------------
Release date: 11 June 2019
Expand Down
40 changes: 40 additions & 0 deletions docs/release/release_0.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Announcement: GraSPy 0.1
==========================

We're happy to announce the release of GraSPy 0.1! 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 2 months of work with over 18 pull requests by
3 contributors. Highlights include:

- Added ``MultipleASE``, which is a new method for embedding population of graphs.
- Added ``mug2vec`` within ``pipieline`` module, which learns a feature vector for population of graphs.

Improvements
------------
- Improved contribution guidelines.
- Fixed bugs in ``GaussianCluster``.
- ``symmeterize`` function now uses ``avg`` as default method.
- Fixed ``dataset`` module loading errors.
- Improve underlying `ER` sampling code.

API Changes
-----------
- Added ``sort_nodes`` argument for ``heatmap`` and ``gridplot`` functions.

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

Contributors to this release
----------------------------
- `Jaewon Chung <https://github.com/j1c>`_
- `Benjamin Pedigo <https://github.com/bdpedigo>`_
- `Kiki Zhang <https://github.com/Kikiwink>`_ (new contributor!)
2 changes: 1 addition & 1 deletion graspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
warnings.simplefilter("always", category=UserWarning)


__version__ = "0.0.3"
__version__ = "0.1"

0 comments on commit b47082a

Please sign in to comment.