summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraric <none@none>2006-02-05 20:42:14 +0000
committeraric <none@none>2006-02-05 20:42:14 +0000
commit71a49383d5cae628bf8454ff94b376e215568077 (patch)
tree246c864ba6ec55aa7944857ca70602e9765c7670
parente1faae257db9d0c70146fb2f0b7083b3aafe3ae5 (diff)
downloadnetworkx-0.27.tar.gz
release-0.27 and notesnetworkx-0.27
--HG-- extra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40153
-rw-r--r--doc/News.txt37
-rw-r--r--networkx/release.py2
2 files changed, 37 insertions, 2 deletions
diff --git a/doc/News.txt b/doc/News.txt
index 28b9164d..ba8de07f 100644
--- a/doc/News.txt
+++ b/doc/News.txt
@@ -3,7 +3,42 @@ NetworkX News
.. include:: Menu.txt
-What's new in NX-0.26?
+What's new in NX-0.27?
+----------------------
+
+Release date: 5 Feb 2006
+
+See: https://networkx.lanl.gov/wiki/timeline
+
+New features
+~~~~~~~~~~~~
+ - sparse_binomial_graph: faster graph generator for sparse random graphs
+ - read/write routines in io.py now handle XGraph() type and
+ gzip and bzip2 files
+ - optional mapping of type for read/write routine to allow
+ on-the-fly conversion of node and edge datatype on read
+ - Substantial changes related to digraphs and definitions of
+ neighbors() and edges(). For digraphs edges=out_edges.
+ Neighbors now returns a list of neighboring nodes with
+ possible duplicates for graphs with parallel edges
+ See https://networkx.lanl.gov/wiki/ticket/24
+ - Addition of out_edges, in_edges and corresponding out_neighbors
+ and in_neighbors for digraphs. For digraphs edges=out_edges.
+
+Examples
+~~~~~~~~
+ - Minard's data for Napoleon's Russian campaign
+ https://networkx.lanl.gov/wiki/file/networkx/trunk/examples/minard.py
+
+Bug fixes
+~~~~~~~~~
+ - XGraph(multiedges=True) returns a copy of the list of edges
+ for get_edge()
+
+
+
+
+What's new in NX-0.26
----------------------
Release date: 6 Jan 2006
diff --git a/networkx/release.py b/networkx/release.py
index 12440eac..df8b9a26 100644
--- a/networkx/release.py
+++ b/networkx/release.py
@@ -1,7 +1,7 @@
"""Release data for NetworkX."""
name = 'networkx'
-version = '0.27-svn'
+version = '0.27'
description = "Python package for creating and manipulating graphs and networks"