[tryton-debian-vcs] tryton-proteus branch debian-jessie-3.0 updated. debian/3.0.3-1-2-gb1ca399

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.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=debian/3.0.3-1-2-gb1ca399

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

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

diff --git a/debian/changelog b/debian/changelog
index 3302408..5dbb6ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (3.0.4-1) unstable; urgency=medium
+
+  * Merging upstream version 3.0.4.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 15 Jul 2015 14:16:57 +0200
+
 tryton-proteus (3.0.3-1) unstable; urgency=medium
 
   * Adding actual upstream signing key.
commit a320d37c2487a85b4f4981b953990456d5f7ef37
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:16:57 2015 +0200

    Merging upstream version 3.0.4.

diff --git a/CHANGELOG b/CHANGELOG
index f6f5ca5..44c176d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.4 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.3 - 2015-02-16
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index b477b74..7fff49f 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.0.3
+Version: 3.0.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 b477b74..7fff49f 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.0.3
+Version: 3.0.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 1bf5811..fd2c0f3 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.0.3"
+__version__ = "3.0.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