Skip to content

Commit cd9af80

Browse files
committed
releasing 0.1.3
1 parent 83168a1 commit cd9af80

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# graphflow : Algorithms for Graph Flow Analysis
22

3+
[![Build Status](https://travis-ci.org/stephenhky/GraphFlow.svg?branch=master)](https://travis-ci.org/stephenhky/GraphFlow)
4+
35
This Python package provides numerical routines for graph flow analysis, particularly:
46

57
* PageRank
@@ -17,5 +19,6 @@ After ensuring they have been installed, type the following to install `graphflo
1719

1820
# News
1921

22+
* 06/14/2018: `graphflow` 0.1.3 released.
2023
* 06/06/2018: `graphflow` 0.1.2 released.
2124
* 04/12/2018: `graphflow` 0.1.1 released.

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# The short X.Y version.
6060
version = u'0.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = u'0.1.2'
62+
release = u'0.1.3'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

doc/source/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
Welcome to GraphFlow's documentation!
77
=====================================
88

9+
.. image:: https://travis-ci.org/stephenhky/GraphFlow.svg?branch=master
10+
:target: https://travis-ci.org/stephenhky/GraphFlow
11+
912
Contents:
1013

1114
.. toctree::

doc/source/news.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
News
22
====
33

4+
* 06/14/2018: `graphflow` 0.1.3 released.
45
* 06/06/2018: `graphflow` 0.1.2 released.
56
* 04/12/2018: `graphflow` 0.1.1 released.
67

78
What's New
89
----------
910

11+
Release 0.1.3 (Jun 14, 2018)
12+
----------------------------
13+
14+
* Compatibility with Python 3.5 and 3.6.
15+
16+
1017
Release 0.1.2 (Jun 06, 2018)
1118
----------------------------
1219

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010

1111

1212
setup(name='graphflow',
13-
version="0.1.2",
13+
version="0.1.3",
1414
description="Algorithms for Graph Flow Analysis",
1515
long_description="Numerical routines for analyzing data represented by graphs",
1616
classifiers=[

0 commit comments

Comments
 (0)