diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | __pkginfo__.py | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
3 files changed, 18 insertions, 1 deletions
@@ -2,9 +2,20 @@ ChangeLog for logilab.common ============================ -- + * dropped python 2.3 support + * daemon: we can now specify umask to daemonize function, and it return different exit code according to the process + * pyro_ext: new ns_reregister function to ensure a name is still properly + registered in the pyro name server + + * hg: new incoming/outgoing functions backward compatible with regards to + mercurial version (eg hg 1.6 and earlier) + + * testlib/pytest: more deprecation and removed code. Still on the way to + unittest2 + 2010-11-15 -- 0.53.0 * first python3.x compatible release diff --git a/__pkginfo__.py b/__pkginfo__.py index e981072..c4eeeb1 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -23,7 +23,7 @@ modname = 'common' subpackage_of = 'logilab' subpackage_master = True -numversion = (0, 53, 0) +numversion = (0, 54, 0) version = '.'.join([str(num) for num in numversion]) license = 'LGPL' # 2.1 or later diff --git a/debian/changelog b/debian/changelog index 63c8aee..c0ede7c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-common (0.54.0-1) unstable; urgency=low + + * new upstream release + + -- Sylvain Thénault <sylvain.thenault@logilab.fr> Wed, 12 Jan 2011 09:04:29 +0100 + logilab-common (0.53.0-1) unstable; urgency=low * new upstream release |