[tryton-debian-vcs] tryton-proteus branch debian updated. debian/3.6.0-1-4-g6b067a6

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

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

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

diff --git a/debian/changelog b/debian/changelog
index d9d6874..dc3d0dd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-proteus (3.6.1-1) unstable; urgency=medium
+
+  * Updating year of debian copyright.
+  * Adapting section naming in gbp.conf to current git-buildpackage.
+  * Merging upstream version 3.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 15 Jul 2015 14:14:54 +0200
+
 tryton-proteus (3.6.0-1) unstable; urgency=medium
 
   * Wrapping and sorting control files (wrap-and-sort -bts).
commit ffe56a9cdfd94010bebcd99f6ca1ae59c948758d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:14:54 2015 +0200

    Merging upstream version 3.6.1.

diff --git a/CHANGELOG b/CHANGELOG
index 1a3002d..500a93a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.0 - 2015-04-20
 * Bug fixes (see mercurial logs for details)
 * Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index f6488f0..7c8ce64 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.6.0
+Version: 3.6.1
 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 f6488f0..7c8ce64 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.6.0
+Version: 3.6.1
 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 297d160..8df1433 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.6.0"
+__version__ = "3.6.1"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff --git a/proteus/tests/__init__.py b/proteus/tests/__init__.py
index a2eb873..2ea448e 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