From b47082ad1f0ac9f2d9fca82c30398bcb08f14367 Mon Sep 17 00:00:00 2001 From: Jaewon Chung Date: Tue, 6 Aug 2019 11:21:54 -0400 Subject: [PATCH] v0.1 Release (#252) * Update docs for new version * Upgrade to v0.1 --- docs/news.rst | 9 ++++++++ docs/release/release_0.1.rst | 40 ++++++++++++++++++++++++++++++++++++ graspy/__init__.py | 2 +- 3 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 docs/release/release_0.1.rst diff --git a/docs/news.rst b/docs/news.rst index 7f7c6a674..2b4706811 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -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 diff --git a/docs/release/release_0.1.rst b/docs/release/release_0.1.rst new file mode 100644 index 000000000..30c36fcdd --- /dev/null +++ b/docs/release/release_0.1.rst @@ -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 `_ +and our `tutorials `_. + + +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 `_ +- `Benjamin Pedigo `_ +- `Kiki Zhang `_ (new contributor!) \ No newline at end of file diff --git a/graspy/__init__.py b/graspy/__init__.py index bccc5ed1d..358599c4a 100644 --- a/graspy/__init__.py +++ b/graspy/__init__.py @@ -15,4 +15,4 @@ warnings.simplefilter("always", category=UserWarning) -__version__ = "0.0.3" +__version__ = "0.1"