[tryton-debian-vcs] tryton-proteus branch upstream-2.8 updated. upstream/2.8.3-1-gdff04f9

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Jul 15 14:23:20 UTC 2015


The following commit has been merged in the upstream-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/2.8.3-1-gdff04f9

commit dff04f91d2935e8c5e21e4d1f235d1459197ea1c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:15:58 2015 +0200

    Adding upstream version 2.8.4.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index b910dfb..a5b6e18 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.4 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 2.8.3 - 2015-02-16
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index ae22fa2..0278503 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 2.8.3
+Version: 2.8.4
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index ae22fa2..0278503 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 2.8.3
+Version: 2.8.4
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus/__init__.py b/proteus/__init__.py
index bcb099a..cefa86a 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "2.8.3"
+__version__ = "2.8.4"
 __all__ = ['Model', 'Wizard']
 import sys
 try:
diff --git a/proteus/tests/__init__.py b/proteus/tests/__init__.py
index baddecf..2727f71 100644
--- a/proteus/tests/__init__.py
+++ b/proteus/tests/__init__.py
@@ -20,9 +20,9 @@ def test_suite():
 def main():
     suite = test_suite()
     runner = unittest.TextTestRunner()
-    runner.run(suite)
+    return runner.run(suite)
 
 if __name__ == '__main__':
     sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(
         os.path.abspath(__file__)))))
-    main()
+    sys.exit(not main().wasSuccessful())
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list