Skip to content
Snippets Groups Projects
Commit 0312b8ff84ef authored by Sylvain Thénault's avatar Sylvain Thénault
Browse files

0.26.1

parent 0e73277cf67c
No related branches found
No related tags found
No related merge requests found
ChangeLog for RQL
=================
--
2010-06-04 -- 0.26.1
* normalize NOT() to NOT EXISTS() when it makes sense
......@@ -5,3 +5,4 @@
* 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
......@@ -6,5 +7,7 @@
* 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
......
......@@ -16,9 +16,7 @@
#
# 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"
......@@ -22,7 +20,7 @@
__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
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment