# HG changeset patch # User Thierry Florac # Date 1444291331 -7200 # Node ID d56eef10d01a895a14c063c05e726f18cfdf7e51 # Parent 26640dcbe0369648baa78e10b7d14739050e6b24 Version 0.1.2 diff -r 26640dcbe036 -r d56eef10d01a .installed.cfg --- a/.installed.cfg Thu Oct 08 10:01:29 2015 +0200 +++ b/.installed.cfg Thu Oct 08 10:02:11 2015 +0200 @@ -71,3 +71,18 @@ location = /home/tflorac/Dropbox/src/PyAMS/pyams_alchemy/parts/test recipe = zc.recipe.testrunner script = /home/tflorac/Dropbox/src/PyAMS/pyams_alchemy/bin/test + +[buildout] +installed_develop_eggs = + +[buildout] +parts = i18n pyflakes test package + +[buildout] +parts = pyflakes test package i18n + +[buildout] +parts = test package i18n pyflakes + +[buildout] +parts = package i18n pyflakes test diff -r 26640dcbe036 -r d56eef10d01a buildout.cfg --- a/buildout.cfg Thu Oct 08 10:01:29 2015 +0200 +++ b/buildout.cfg Thu Oct 08 10:02:11 2015 +0200 @@ -58,4 +58,4 @@ eggs = pyams_alchemy [test] [versions] -pyams_base = 0.1.1 +pyams_alchemy = 0.1.2 diff -r 26640dcbe036 -r d56eef10d01a docs/HISTORY.txt --- a/docs/HISTORY.txt Thu Oct 08 10:01:29 2015 +0200 +++ b/docs/HISTORY.txt Thu Oct 08 10:02:11 2015 +0200 @@ -0,0 +1,16 @@ +History +======= + +0.1.2 +----- + - use named permissions + +0.1.1 +----- + - corrected closing of database connections on pool checkin/checkout + - added DataLoader class to help data migration between databases + - added DynamicSchemaMixin class to allow definition of schema name from configuration file + +0.1.0 +----- + - First release diff -r 26640dcbe036 -r d56eef10d01a setup.py --- a/setup.py Thu Oct 08 10:01:29 2015 +0200 +++ b/setup.py Thu Oct 08 10:02:11 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 = [] diff -r 26640dcbe036 -r d56eef10d01a src/pyams_alchemy.egg-info/PKG-INFO --- a/src/pyams_alchemy.egg-info/PKG-INFO Thu Oct 08 10:01:29 2015 +0200 +++ b/src/pyams_alchemy.egg-info/PKG-INFO Thu Oct 08 10:02:11 2015 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pyams-alchemy -Version: 0.1.1 +Version: 0.1.2 Summary: PyAMS interfaces and classes for SQLAlchemy integration Home-page: http://hg.ztfy.org/pyams/pyams_alchemy Author: Thierry Florac @@ -8,6 +8,22 @@ License: ZPL Description: + History + ======= + + 0.1.2 + ----- + - use named permissions + + 0.1.1 + ----- + - corrected closing of database connections on pool checkin/checkout + - added DataLoader class to help data migration between databases + - added DynamicSchemaMixin class to allow definition of schema name from configuration file + + 0.1.0 + ----- + - First release Keywords: Pyramid PyAMS SQLALchemy Platform: UNKNOWN