# HG changeset patch # User Sylvain Thénault <sylvain.thenault@logilab.fr> # Date 1275662372 -7200 # Fri Jun 04 16:39:32 2010 +0200 # Node ID 0312b8ff84ef813e23aafe84b8e0afa485258a60 # Parent 0e73277cf67ccdb5f4132c91e509180ed7d2bf33 0.26.1 diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,13 @@ ChangeLog for RQL ================= --- +2010-06-04 -- 0.26.1 * normalize NOT() to NOT EXISTS() when it makes sense + * fix grammar bug in HAVING clause: should all arbitrary expression and fix to deal with IN() hack + + 2010-04-20 -- 0.26.0 * setuptools support diff --git a/__pkginfo__.py b/__pkginfo__.py --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -16,13 +16,11 @@ # # You should have received a copy of the GNU Lesser General Public License along # with rql. If not, see <http://www.gnu.org/licenses/>. -"""RQL packaging information. - -""" +"""RQL packaging information.""" __docformat__ = "restructuredtext en" modname = "rql" -numversion = (0, 26, 0) +numversion = (0, 26, 1) version = '.'.join(str(num) for num in numversion) license = 'LGPL' @@ -37,8 +35,6 @@ web = "http://www.logilab.org/project/rql" ftp = "ftp://ftp.logilab.org/pub/rql" -pyversions = ['2.4'] - import os, subprocess, sys from distutils.core import Extension diff --git a/debian/control b/debian/control --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Architecture: any XB-Python-Version: ${python:Versions} Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}, python-logilab-common (>= 0.35.3-1), yapps2-runtime, python-logilab-database -Conflicts: cubicweb-common (< 3.8.0) +Conflicts: cubicweb-common (< 3.8.3) Provides: ${python:Provides} Description: relationship query language (RQL) utilities A library providing the base utilities to handle RQL queries,