diff options
author | David Douard <david.douard@logilab.fr> | 2014-09-01 15:20:28 +0200 |
---|---|---|
committer | David Douard <david.douard@logilab.fr> | 2014-09-01 15:20:28 +0200 |
commit | 9e897ae98d6ab4f756b4c85e14c20a9a72f3991b (patch) | |
tree | 453eb1f1b8cc4c1eab18c18365aae0888fa81b21 | |
parent | 6fcffaf966c7225abf11b0f1982fc3af2e61cb1f (diff) | |
download | logilab-common-9e897ae98d6ab4f756b4c85e14c20a9a72f3991b.tar.gz |
prepare 0.63.0
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | __pkginfo__.py | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 4 | ||||
-rw-r--r-- | python-logilab-common.spec | 2 |
5 files changed, 25 insertions, 5 deletions
@@ -1,6 +1,22 @@ ChangeLog for logilab.common ============================ +2014-11-05 -- 0.63.0 + * drop compatibility with python <= 2.5 (#264017) + + * fix textutils.py doctests for py3k + + * produce a clearer exception when dot is not installed (#253516) + + * make source python3-compatible (3.3+), without using 2to3. This + introduces a dependency on six (#265740) + + * fix umessage header decoding on python 3.3 and newer (#149345) + + * WARNING: the compat module no longer exports 'callable', 'izip', 'imap', + 'chain', 'sum', 'enumerate', 'frozenset', 'reversed', 'sorted', 'max', + 'relpath', 'InheritableSet', or any subprocess-related names. + 2014-07-30 -- 0.62.1 * shellutils: restore py 2.5 compat by removing usage of class decorator diff --git a/__pkginfo__.py b/__pkginfo__.py index d2a8669..ce0faa9 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -25,7 +25,7 @@ modname = 'common' subpackage_of = 'logilab' subpackage_master = True -numversion = (0, 62, 1) +numversion = (0, 63, 0) version = '.'.join([str(num) for num in numversion]) license = 'LGPL' # 2.1 or later diff --git a/debian/changelog b/debian/changelog index 92caf90..61b9a9b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-common (0.63.0-1) unstable; urgency=low + + * new upstream release + + -- David Douard <david.douard@logilab.fr> Mon, 01 Sep 2014 14:06:37 +0200 + logilab-common (0.62.1-1) unstable; urgency=low * new upstream release diff --git a/debian/control b/debian/control index 9583845..82061a3 100644 --- a/debian/control +++ b/debian/control @@ -4,11 +4,9 @@ Priority: optional Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Uploaders: David Douard <david.douard@logilab.fr>, Alexandre Fayolle <afayolle@debian.org>, - Alexandre Fayolle <alexandre.fayolle@logilab.fr>, Sandro Tosi <morph@debian.org>, Adrien Di Mascio <Adrien.DiMascio@logilab.fr>, Nicolas Chauvat <nicolas.chauvat@logilab.fr>, - Julien Jehannet <julien.jehannet@debian.org>, Build-Depends: debhelper (>= 7), python (>= 2.6), @@ -35,7 +33,7 @@ Recommends: python-egenix-mxdatetime Conflicts: python-constraint (<= 0.3.0-4), python-logilab-astng (<= 0.16.0-1), - pylint (<< 0.11.0-1), + pylint (<< 1), devtools (<= 0.9.0-1), logilab-doctools (<= 0.1.6-4), python-logilab-aspects (<= 0.1.4-2), diff --git a/python-logilab-common.spec b/python-logilab-common.spec index 1136812..281069d 100644 --- a/python-logilab-common.spec +++ b/python-logilab-common.spec @@ -10,7 +10,7 @@ %{!?_python_sitelib: %define _python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: %{python}-logilab-common -Version: 0.62.1 +Version: 0.63.0 Release: logilab.1%{?dist} Summary: Common libraries for Logilab projects |