[tryton-debian-vcs] tryton-proteus branch debian-jessie-3.2 updated. debian/3.2.4-1-2-g319b671

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


The following commit has been merged in the debian-jessie-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=debian/3.2.4-1-2-g319b671

commit 319b6713f2d68de30a84e97ea960a599532b6ae8
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:18:02 2015 +0200

    Releasing debian version 3.2.5-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 581b2b6..13111c7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (3.2.5-1) unstable; urgency=medium
+
+  * Merging upstream version 3.2.5.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 15 Jul 2015 14:18:01 +0200
+
 tryton-proteus (3.2.4-1) unstable; urgency=medium
 
   * Merging upstream version 3.2.4.
commit d99057d6e05c13e89d0b89dffc77d9892f015d05
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:18:01 2015 +0200

    Merging upstream version 3.2.5.

diff --git a/CHANGELOG b/CHANGELOG
index 578a00c..7a50459 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.5 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.2.4 - 2015-03-30
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index b1e7bd1..c965a37 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.4
+Version: 3.2.5
 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 b1e7bd1..c965a37 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.4
+Version: 3.2.5
 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 cdd7b28..37b29c6 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "3.2.4"
+__version__ = "3.2.5"
 __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