summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraric <none@none>2006-01-06 18:32:07 +0000
committeraric <none@none>2006-01-06 18:32:07 +0000
commita48afc41b9af691900f95221ac381efeebadff00 (patch)
tree8069b10d540d049d6d640ea90b0031f548ff3751
parent352f96e02d763ead251fed364521f96c7fd41d8d (diff)
downloadnetworkx-0.26.tar.gz
release-0.26 updatenetworkx-0.26
--HG-- extra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40129
-rw-r--r--README2
-rw-r--r--doc/News.txt28
-rw-r--r--networkx/release.py2
3 files changed, 30 insertions, 2 deletions
diff --git a/README b/README
index 39781798..1ecd7000 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NetworkX
NetworkX (NX) is a Python package for the creation, manipulation, and
study of the structure, dynamics, and functions of complex networks.
-Copyright (C) 2004,2005 by
+Copyright (C) 2004-2006 by
Aric Hagberg <hagberg@lanl.gov>
Dan Schult <dschult@colgate.edu>
Pieter Swart <swart@lanl.gov>
diff --git a/doc/News.txt b/doc/News.txt
index 9a9df323..94102c36 100644
--- a/doc/News.txt
+++ b/doc/News.txt
@@ -3,6 +3,34 @@ NetworkX News
.. include:: Menu.txt
+What's new in NX-0.26?
+----------------------
+
+Release date: 6 Jan 2006
+
+New features
+~~~~~~~~~~~~
+ - Simpler interface to drawing with pylab
+ - G.info(node=None) function returns short information about graph
+ or node
+ - adj_matrix now takes optional nodelist to force ordering of
+ rows/columns in matrix
+ - optional pygraphviz and pydot interface to graphviz is now callable as
+ "graphviz" with pygraphviz preferred. Use draw_graphviz(G).
+
+Examples
+~~~~~~~~
+ - Several new examples showing how draw to graphs with various
+ properties of nodes, edges, and labels
+ https://networkx.lanl.gov/wiki/file/networkx/trunk/examples/
+
+Bug fixes
+~~~~~~~~~
+ - Default data type for all graphs is now None (was the integer 1)
+ - add_nodes_from now won't delete edges if nodes added already exist
+ - Added missing names to generated graphs
+ - Indexes for nodes in graphs start at zero by default (was 1)
+
What's new in NX-0.25?
----------------------
diff --git a/networkx/release.py b/networkx/release.py
index eedc487b..f3d9e63e 100644
--- a/networkx/release.py
+++ b/networkx/release.py
@@ -1,7 +1,7 @@
"""Release data for NetworkX."""
name = 'networkx'
-version = '0.26.svn'
+version = '0.26'
description = "Python package for creating and manipulating graphs and networks"