Version 0.1.10 0.1.10
authorThierry Florac <tflorac@ulthar.net>
Mon, 29 Jun 2020 22:35:05 +0200
changeset 81 8252d1b237fc
parent 80 dd9d4e651992
child 82 598eb7e7af7b
Version 0.1.10
buildout.cfg
docs/HISTORY.txt
setup.py
src/pyams_alchemy.egg-info/PKG-INFO
src/pyams_alchemy.egg-info/requires.txt
--- a/buildout.cfg	Tue Nov 19 17:16:05 2019 +0100
+++ b/buildout.cfg	Mon Jun 29 22:35:05 2020 +0200
@@ -71,4 +71,4 @@
 eggs = pyams_alchemy [test]
 
 [versions]
-pyams_alchemy = 0.1.9
+pyams_alchemy = 0.1.10
--- a/docs/HISTORY.txt	Tue Nov 19 17:16:05 2019 +0100
+++ b/docs/HISTORY.txt	Mon Jun 29 22:35:05 2020 +0200
@@ -1,6 +1,11 @@
 History
 =======
 
+0.1.10
+------
+ - register SQLAlchemy sessions using "zope.sqlalchemy" features instead of using session maker
+   extensions
+
 0.1.9
 -----
  - updated text areas CSS class
--- a/setup.py	Tue Nov 19 17:16:05 2019 +0100
+++ b/setup.py	Mon Jun 29 22:35:05 2020 +0200
@@ -22,7 +22,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.9'
+version = '0.1.10'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []
@@ -65,7 +65,7 @@
           'zope.interface',
           'zope.lifecycleevent',
           'zope.schema',
-          'zope.sqlalchemy >= 1.0.0',
+          'zope.sqlalchemy >= 1.2',
       ],
       entry_points="""
       # -*- Entry points: -*-
--- a/src/pyams_alchemy.egg-info/PKG-INFO	Tue Nov 19 17:16:05 2019 +0100
+++ b/src/pyams_alchemy.egg-info/PKG-INFO	Mon Jun 29 22:35:05 2020 +0200
@@ -1,17 +1,21 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: pyams-alchemy
-Version: 0.1.9
+Version: 0.1.10
 Summary: PyAMS interfaces and classes for SQLAlchemy integration
 Home-page: http://hg.ztfy.org/pyams/pyams_alchemy
 Author: Thierry Florac
 Author-email: tflorac@ulthar.net
 License: ZPL
-Description-Content-Type: UNKNOWN
 Description: 
         
         History
         =======
         
+        0.1.10
+        ------
+         - register SQLAlchemy sessions using "zope.sqlalchemy" features instead of using session maker
+           extensions
+        
         0.1.9
         -----
          - updated text areas CSS class
@@ -74,3 +78,4 @@
 Classifier: Programming Language :: Python
 Classifier: Framework :: Pyramid
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Provides-Extra: test
--- a/src/pyams_alchemy.egg-info/requires.txt	Tue Nov 19 17:16:05 2019 +0100
+++ b/src/pyams_alchemy.egg-info/requires.txt	Mon Jun 29 22:35:05 2020 +0200
@@ -8,6 +8,6 @@
 zope.interface
 zope.lifecycleevent
 zope.schema
-zope.sqlalchemy>=1.0.0
+zope.sqlalchemy>=1.2
 
 [test]