diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2010-02-26 07:12:51 +0100 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2010-02-26 07:12:51 +0100 |
commit | c9f9b8bc20b2c3716141b7a9c72a18013632e8bd (patch) | |
tree | 6c088d74f92c2a0b201f7cb74c26654a8c6739ea | |
parent | c9db05c0053a61cf8ab47eebc69351e76c73ad79 (diff) | |
download | logilab-common-c9f9b8bc20b2c3716141b7a9c72a18013632e8bd.tar.gz |
0.48.1
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | __pkginfo__.py | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | decorators.py | 2 |
4 files changed, 21 insertions, 7 deletions
@@ -1,25 +1,33 @@ ChangeLog for logilab.common ============================ - -- +2010-02-26 -- 0.48.1 * adbh: added dbport optional argument to [backup|restore]_commands -2010-02-17 -- 0.48.0 - * date: fixed mx date time compat for date_range (#20651) - * testlib: generative test should not be interrupted by self.skip() (#20648) -2010-02-10 -- 0.47.0 + +2010-02-17 -- 0.48.0 + * date: fixed mx date time compat for date_range (#20651) + + * testlib: generative test should not be interrupted by self.skip() (#20648) + + + +2010-02-10 -- 0.47.0 * adbh: changed backup / restore api (BREAKS COMPAT): - backup_command is now backup_commands (eg return a list of commands) - each command returned in backup_commands/restore_commands may now be list that may be used as argument to subprocess.call, or a string which will the requires a subshell - new sql_rename_col method + * deprecation: deprecated now takes an optional 'stacklevel' argument, default to 2 + * date: some functions to ease python's datetime module usage have been backported from cubicweb + 2009-12-23 -- 0.46.0 * db / adbh: added SQL Server support using Pyodbc diff --git a/__pkginfo__.py b/__pkginfo__.py index bebbf58..c5ba9d2 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -8,7 +8,7 @@ __docformat__ = "restructuredtext en" distname = 'logilab-common' modname = 'common' -numversion = (0, 48, 0) +numversion = (0, 48, 1) version = '.'.join([str(num) for num in numversion]) copyright = '2000-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.' license = 'GPL' diff --git a/debian/changelog b/debian/changelog index 668f0e4..4965465 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-common (0.48.1-1) unstable; urgency=low + + * new upstream release + + -- Sylvain Thénault <sylvain.thenault@logilab.fr> Fri, 26 Feb 2010 07:12:06 +0100 + logilab-common (0.48.0-1) unstable; urgency=low * new upstream release diff --git a/decorators.py b/decorators.py index f5278cc..b656be6 100644 --- a/decorators.py +++ b/decorators.py @@ -1,6 +1,6 @@ """A few useful function/method decorators. -:copyright: 2006-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +:copyright: 2006-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr :license: General Public License version 2 - http://www.gnu.org/licenses """ |