diff options
-rw-r--r-- | ChangeLog | 26 | ||||
-rw-r--r-- | __pkginfo__.py | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
3 files changed, 30 insertions, 4 deletions
@@ -1,9 +1,29 @@ ChangeLog for logilab.common ============================ --- - * graph: generate methods now takes an optional mapfile argument to generate - html image maps +2010-04-20 -- 0.50.0 + * graph: + - generate methods now takes an optional mapfile argument to generate + html image maps + - new ordered_nodes function taking a dependency graph dict as arguments + and returning an ordered list of nodes + + * configuration: + - nicer serialization of bytes / time option + - may now contains several option provider with the same name + - consider 'level' in option dict, --help displaying only option with level + 0, and automatically adding --long-help options for higher levels + + * textutils: case insensitive apply_unit + + * sphinx_ext: new module usable as a sphinx pluggin and containing a new + 'autodocstring' directive + + * ureports: output   instead of for strict xhtml compliance + + * decorators: @cached propery copy inner function docstring + + 2010-03-16 -- 0.49.0 * date: new 'totime' function diff --git a/__pkginfo__.py b/__pkginfo__.py index 9848580..492b746 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -8,7 +8,7 @@ __docformat__ = "restructuredtext en" distname = 'logilab-common' modname = 'common' -numversion = (0, 49, 0) +numversion = (0, 50, 0) version = '.'.join([str(num) for num in numversion]) copyright = '2000-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.' license = 'LGPL' diff --git a/debian/changelog b/debian/changelog index cc014ec..cda26b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-common (0.50.0-1) unstable; urgency=low + + * new upstrem release + + -- Sylvain Thénault <sylvain.thenault@logilab.fr> Tue, 20 Apr 2010 07:49:07 +0200 + logilab-common (0.49.0-1) unstable; urgency=low * new upstream release |