Version 0.1.3 0.1.3
authorThierry Florac <thierry.florac@onf.fr>
Mon, 18 Jan 2016 17:58:46 +0100
changeset 21 a801552ffad0
parent 20 62e443d3c3d9
child 22 2361ecac5731
Version 0.1.3
buildout.cfg
docs/HISTORY.txt
setup.py
src/pyams_i18n.egg-info/PKG-INFO
--- a/buildout.cfg	Mon Dec 07 12:00:41 2015 +0100
+++ b/buildout.cfg	Mon Jan 18 17:58:46 2016 +0100
@@ -66,4 +66,4 @@
 eggs = pyams_i18n [test]
 
 [versions]
-pyams_i18n = 0.1.2
+pyams_i18n = 0.1.3
--- a/docs/HISTORY.txt	Mon Dec 07 12:00:41 2015 +0100
+++ b/docs/HISTORY.txt	Mon Jan 18 17:58:46 2016 +0100
@@ -1,6 +1,10 @@
 History
 =======
 
+0.1.3
+-----
+ - correction in locale negotiator
+
 0.1.2
 -----
  - updated I18n manager interface and added base I18nManager mixin class
--- a/setup.py	Mon Dec 07 12:00:41 2015 +0100
+++ b/setup.py	Mon Jan 18 17:58:46 2016 +0100
@@ -25,7 +25,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.2'
+version = '0.1.3'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []
@@ -50,7 +50,8 @@
       package_dir={'': 'src'},
       namespace_packages=[],
       include_package_data=True,
-      package_data={'': ['*.zcml', '*.txt', '*.pt', '*.pot', '*.po', '*.mo', '*.png', '*.gif', '*.jpeg', '*.jpg', '*.css', '*.js']},
+      package_data={'': ['*.zcml', '*.txt', '*.pt', '*.pot', '*.po', '*.mo',
+                         '*.png', '*.gif', '*.jpeg', '*.jpg', '*.css', '*.js']},
       zip_safe=False,
       # uncomment this to be able to run tests with setup.py
       test_suite="pyams_i18n.tests.test_utilsdocs.test_suite",
--- a/src/pyams_i18n.egg-info/PKG-INFO	Mon Dec 07 12:00:41 2015 +0100
+++ b/src/pyams_i18n.egg-info/PKG-INFO	Mon Jan 18 17:58:46 2016 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyams-i18n
-Version: 0.1.2
+Version: 0.1.3
 Summary: PyAMS internationalization interfaces and classes
 Home-page: http://hg.ztfy.org/pyams/pyams_i18n
 Author: Thierry Florac
@@ -11,6 +11,10 @@
         History
         =======
         
+        0.1.3
+        -----
+         - correction in locale negotiator
+        
         0.1.2
         -----
          - updated I18n manager interface and added base I18nManager mixin class