summaryrefslogtreecommitdiff
path: root/doc/release/api_1.4.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/release/api_1.4.rst')
-rw-r--r--doc/release/api_1.4.rst34
1 files changed, 25 insertions, 9 deletions
diff --git a/doc/release/api_1.4.rst b/doc/release/api_1.4.rst
index 0f809860..b4bd25b2 100644
--- a/doc/release/api_1.4.rst
+++ b/doc/release/api_1.4.rst
@@ -1,14 +1,30 @@
-*********************************
-Version 1.4 notes and API changes
-*********************************
+NetworkX 1.4
+============
-We have made some API changes, detailed below, to add clarity.
-This page reflects changes from networkx-1.3 to networkx-1.4.
-For changes from earlier versions to networkx-1.0 see
-:doc:`Version 1.0 API changes <api_1.0>`.
+Release date: 23 January 2011
-Please send comments and questions to the networkx-discuss mailing list:
-http://groups.google.com/group/networkx-discuss .
+New features
+------------
+ - :mod:`k-shell,k-crust,k-corona <networkx.algorithms.core>`
+ - :mod:`read GraphML files from yEd <networkx.readwrite.graphml>`
+ - :mod:`read/write GEXF format files <networkx.readwrite.gexf>`
+ - :mod:`find cycles in a directed graph <networkx.algorithms.cycles>`
+ - :mod:`DFS <networkx.algorithms.traversal.depth_first_search>` and :mod:`BFS <networkx.algorithms.traversal.breadth_first_search>` algorithms
+ - :mod:`chordal graph functions <networkx.algorithms.chordal.chordal_alg>`
+ - :mod:`Prim's algorithm for minimum spanning tree <networkx.algorithms.mst>`
+ - :mod:`r-ary tree generator <networkx.generators.classic>`
+ - :mod:`rich club coefficient <networkx.algorithms.richclub>`
+ - NumPy matrix version of :mod:`Floyd's algorithm for all-pairs shortest path <networkx.algorithms.shortest_paths.dense>`
+ - :mod:`read GIS shapefiles <networkx.readwrite.nx_shp>`
+ - :mod:`functions to get and set node and edge attributes <networkx.classes.function>`
+ - and more, see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.4
+
+API changes
+-----------
+ - :mod:`gnp_random_graph() <networkx.generators.random_graphs>` now takes a
+ directed=True|False keyword instead of create_using
+ - :mod:`gnm_random_graph() <networkx.generators.random_graphs>` now takes a
+ directed=True|False keyword instead of create_using
Algorithms changed