Skip to content
This repository has been archived by the owner on Feb 3, 2018. It is now read-only.

Commit

Permalink
Preparing for next release (1.8.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmatiello committed Jul 14, 2012
1 parent c238f6b commit 5943021
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A library for working with graphs in Python
CHANGELOG


Next Release [?]
Release 1.8.2 [July 14, 2009]

Fixes:
The find_cycle function now accepts instances of any subtype of graph and digraph.
Expand All @@ -15,7 +15,7 @@ Release 1.8.1 [Jan 08, 2012]

Enhancements:
Shortest-path now executes in O(n*log(n)) instead of O(n^2).

Fixes:
Shortest-path raises KeyError when the source node is not on the graph;
Bellman-Ford algorithm now works for unconnected graphs (Issue 87);
Expand Down Expand Up @@ -43,7 +43,7 @@ Enhancements:
Added has_edge() and has_hyperedge() methods to hypergraph objects;
Accepting subtypes of graph, digraph and hypergraph in dot-language output (Issue 64);
Added Bellman-Ford algorithm;
Added Edmonds-Karp Maximum-Flow algorithm.
Added Edmonds-Karp Maximum-Flow algorithm.

Fixes:
Adding an edge with a label to a digraph now works again;
Expand Down Expand Up @@ -78,7 +78,7 @@ Important API Changes:
pygraph.classes.Classname.classname classes were renamed to pygraph.classes.classname.classname;
pygraph.algorithms.filters.Filtername.filtername filters were renamed to pygraph.algorithms.filters.filtername.filtername;
pygraph.algorithms.heuristics.Heuristicname.heuristicname heuristics were renamed to pygraph.algorithms.heuristics.heuristicname.heuristicname;
hypergraph's read() and write() methods were removed.
hypergraph's read() and write() methods were removed.


Release 1.6.1 [Jul 04, 2009]
Expand All @@ -91,7 +91,7 @@ Important API Changes:
pygraph.algorithms.cycles.find_cycle does not take argument directed anymore;
Removed methods read, write and generate from graph and digraph classes;
Functions for writing and reading graphs now in pygraph.readwrite.


Release 1.6.0 [Jun 06, 2009]

Expand Down Expand Up @@ -144,7 +144,7 @@ Enhancements:
Added Chow's and Euclidean heuristics for A*;
Added filtered depth-first and breadth-first search;
Added 'find' search filter (stops the search after reaching a target node);
Added 'radius' search filter (radial limit for searching);
Added 'radius' search filter (radial limit for searching);
Moved to setuptools.

Fixes:
Expand Down Expand Up @@ -190,7 +190,7 @@ Enhancements:
Graph object is now a container and graphobj[nodeid] iterates too;
Support for node and edge attributes (Issue 5);
Node deletion.

Fixes:
Install now works with a prefix (Issue 10);
Shortest path spanning trees did not had an explicit root.
Expand All @@ -204,10 +204,10 @@ Release 1.1.1 [Sep 04, 2008]

Enhancements:
Improved install script.

Fixes:
DOT Language output now works for nodes/edges labelled with spaces.

Important API Changes:
get_neighbours() is now get_neighbors() (Issue 9).

Expand Down
4 changes: 2 additions & 2 deletions core/pygraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
A library for working with graphs in Python.
@version: 1.8.1
@version: 1.8.2
L{Data structure<pygraph.classes>} classes are located at C{pygraph.classes}.
Expand Down Expand Up @@ -60,4 +60,4 @@
{'A': 'B', 'C': 'A', 'B': 'Y', 'Y': 'X', 'X': None, 'Z': 'X'}
"""

__import__('pkg_resources').declare_namespace(__name__)
__import__('pkg_resources').declare_namespace(__name__)
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Startup
appname = "python-graph-core"
appversion = "1.8.1"
appversion = "1.8.2"

setup(
name = appname,
Expand Down
2 changes: 1 addition & 1 deletion dot/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Startup
appname = "python-graph-dot"
appversion = "1.8.1"
appversion = "1.8.2"

setup(
name = appname,
Expand Down

0 comments on commit 5943021

Please sign in to comment.