diff --git a/History.txt b/History.txt index d493acc..fea132b 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,8 @@ += 0.9 2007-11-19 + +* All igraph functions wrapped +* Documentation updated with examples + = 0.3.2 2007-09-03 * All 'structural property' functions now complete. diff --git a/README.txt b/README.txt index 50fcae4..593d5aa 100644 --- a/README.txt +++ b/README.txt @@ -2,7 +2,7 @@ IGraph is a Ruby extension for interfacing with the C igraph library (http://cneurocvs.rmki.kfki.hu/igraph/). igraph is a library for creating and manipulating graphs with a particular emphasis on network analysis functions. -IGraph is currently in alpha status and although the basic graph creation and manipulation functions are implemented the API should be considered subject to change. The main documentation can be found at http://igraph.rubyforge.org/igraph/. +IGraph is currently in beta status and the API should be considered stable. The main documentation can be found at http://igraph.rubyforge.org/igraph/ though it is incomplete in places. you can also see the test suite for examples of how to use the various functions. All bug reports, feature requests and patches are welcome. Please email alexg (at) kuicr.kyoto-u.ac.jp or use the rubyforge forums: http://rubyforge.org/forum/?group_id=3943 diff --git a/Rakefile.rb b/Rakefile.rb index 0f0485c..a1d2b2d 100644 --- a/Rakefile.rb +++ b/Rakefile.rb @@ -3,7 +3,7 @@ require 'hoe' $LOAD_PATH.unshift("./ext") class IGraph - VERSION = "0.3.3" + VERSION = "0.9.0" end begin diff --git a/ext/cIGraph.c b/ext/cIGraph.c index 66676eb..a5fc78e 100644 --- a/ext/cIGraph.c +++ b/ext/cIGraph.c @@ -531,7 +531,7 @@ void Init_igraph(){ rb_define_method(cIGraph_community, "community_eb_get_merges", cIGraph_community_eb_get_merges, 1); /* in cIGraph_community.c */ rb_define_method(cIGraph_community, "community_fastgreedy", cIGraph_community_fastgreedy, 0); /* in cIGraph_community.c */ - rb_define_const(cIGraph, "VERSION", rb_str_new2("0.3.3")); + rb_define_const(cIGraph, "VERSION", rb_str_new2("0.9.0")); rb_define_const(cIGraph, "EDGEORDER_ID", INT2NUM(1)); rb_define_const(cIGraph, "EDGEORDER_FROM", INT2NUM(2));