--- a/ChangeLog Mon Jan 04 11:21:30 2016 +0100
+++ b/ChangeLog Mon Jan 04 14:31:16 2016 +0100
@@ -1,6 +1,15 @@
ChangeLog for RQL
=================
+2016-01-04 -- 0.34.0
+ * #1167312: python3 compatibility.
+ WARNING: the as_string() method no longer accepts an "encoding"
+ argument.
+
+ * #3248236: test and fix implementation of get_type for date arithmetic,
+ including support for TZDatetime.
+
+
2015-09-07 -- 0.33.2
* #298337: don't crash in setup.py if we don't have g++
--- a/__pkginfo__.py Mon Jan 04 11:21:30 2016 +0100
+++ b/__pkginfo__.py Mon Jan 04 14:31:16 2016 +0100
@@ -20,7 +20,7 @@
__docformat__ = "restructuredtext en"
modname = "rql"
-numversion = (0, 33, 2)
+numversion = (0, 34, 0)
version = '.'.join(str(num) for num in numversion)
license = 'LGPL'
--- a/debian/changelog Mon Jan 04 11:21:30 2016 +0100
+++ b/debian/changelog Mon Jan 04 14:31:16 2016 +0100
@@ -1,3 +1,9 @@
+rql (0.34.0-1) unstable; urgency=medium
+
+ * new upstream release
+
+ -- Julien Cristau <julien.cristau@logilab.fr> Mon, 04 Jan 2016 14:30:58 +0100
+
rql (0.33.2-1) unstable; urgency=medium
* new upstream release
--- a/debian/control Mon Jan 04 11:21:30 2016 +0100
+++ b/debian/control Mon Jan 04 14:31:16 2016 +0100
@@ -27,7 +27,7 @@
python-logilab-database (>= 1.6.0),
python-six (>= 1.4.0),
Breaks:
- cubicweb-common (<< 3.22.0),
+ cubicweb-common (<< 3.21.99),
Suggests: python-pygments
Description: relationship query language (RQL) utilities - Python 2
A library providing the base utilities to handle RQL queries,
--- a/python-rql.spec Mon Jan 04 11:21:30 2016 +0100
+++ b/python-rql.spec Mon Jan 04 14:31:16 2016 +0100
@@ -8,7 +8,7 @@
%endif
Name: %{python}-rql
-Version: 0.33.2
+Version: 0.34.0
Release: logilab.1%{?dist}
Summary: relationship query language (RQL) utilities
@@ -28,7 +28,7 @@
Requires: %{python}-logilab-constraint >= 0.5.0
Requires: %{python}-six >= 1.4.0
Requires: %{python}-setuptools
-Conflicts: cubicweb < 3.22.0
+Conflicts: cubicweb < 3.21.99
%description