--- a/buildout.cfg Thu Oct 08 09:48:45 2015 +0200
+++ b/buildout.cfg Thu Oct 08 09:50:48 2015 +0200
@@ -60,4 +60,4 @@
eggs = pyams_catalog [test]
[versions]
-pyams_catalog = 0.1.1
+pyams_catalog = 0.1.2
--- a/docs/HISTORY.txt Thu Oct 08 09:48:45 2015 +0200
+++ b/docs/HISTORY.txt Thu Oct 08 09:50:48 2015 +0200
@@ -0,0 +1,15 @@
+History
+=======
+
+0.1.2
+-----
+ - moved required utilities from pyams_base package
+ - added check against missing utility
+
+0.1.1
+-----
+ - don't yield null values in CatalogResultSet
+
+0.1.0
+-----
+ - first release
--- a/setup.py Thu Oct 08 09:48:45 2015 +0200
+++ b/setup.py Thu Oct 08 09:50:48 2015 +0200
@@ -22,7 +22,7 @@
README = os.path.join(DOCS, 'README.txt')
HISTORY = os.path.join(DOCS, 'HISTORY.txt')
-version = '0.1.1'
+version = '0.1.2'
long_description = open(README).read() + '\n\n' + open(HISTORY).read()
tests_require = []
--- a/src/pyams_catalog.egg-info/PKG-INFO Thu Oct 08 09:48:45 2015 +0200
+++ b/src/pyams_catalog.egg-info/PKG-INFO Thu Oct 08 09:50:48 2015 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: pyams-catalog
-Version: 0.1.1
+Version: 0.1.2
Summary: PyAMS catalog tools
Home-page: http://hg.ztfy.org/pyams/pyams_catalog
Author: Thierry Florac
@@ -8,6 +8,21 @@
License: ZPL
Description:
+ History
+ =======
+
+ 0.1.2
+ -----
+ - moved required utilities from pyams_base package
+ - added check against missing utility
+
+ 0.1.1
+ -----
+ - don't yield null values in CatalogResultSet
+
+ 0.1.0
+ -----
+ - first release
Keywords: Pyramid PyAMS catalog
Platform: UNKNOWN
--- a/src/pyams_catalog/query.py Thu Oct 08 09:48:45 2015 +0200
+++ b/src/pyams_catalog/query.py Thu Oct 08 09:50:48 2015 +0200
@@ -31,10 +31,10 @@
self.intids = query_utility(IIntIds)
def __iter__(self):
- query = self.query
intids = self.intids
if intids is None:
raise StopIteration
+ query = self.query
if isinstance(query, Query):
query = query.execute()
if isinstance(query, tuple):