diff -Nru tryton-modules-company-2.8.0/CHANGELOG tryton-modules-company-2.8.1/CHANGELOG --- tryton-modules-company-2.8.0/CHANGELOG 2013-04-22 09:00:33.000000000 +0000 +++ tryton-modules-company-2.8.1/CHANGELOG 2015-02-28 21:47:54.000000000 +0000 @@ -1,3 +1,6 @@ +Version 2.8.1 - 2015-02-28 +* Bug fixes (see mercurial logs for details) + Version 2.8.0 - 2013-04-22 * Bug fixes (see mercurial logs for details) diff -Nru tryton-modules-company-2.8.0/COPYRIGHT tryton-modules-company-2.8.1/COPYRIGHT --- tryton-modules-company-2.8.0/COPYRIGHT 2013-04-22 09:00:32.000000000 +0000 +++ tryton-modules-company-2.8.1/COPYRIGHT 2015-02-28 21:47:53.000000000 +0000 @@ -1,6 +1,6 @@ -Copyright (C) 2008-2013 Cédric Krier. +Copyright (C) 2008-2015 Cédric Krier. Copyright (C) 2008-2013 Bertrand Chenal. -Copyright (C) 2008-2013 B2CK SPRL. +Copyright (C) 2008-2015 B2CK SPRL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru tryton-modules-company-2.8.0/debian/changelog tryton-modules-company-2.8.1/debian/changelog --- tryton-modules-company-2.8.0/debian/changelog 2014-06-26 15:52:09.000000000 +0000 +++ tryton-modules-company-2.8.1/debian/changelog 2015-04-24 09:00:14.000000000 +0000 @@ -1,8 +1,16 @@ -tryton-modules-company (2.8.0-3ubuntu0~ppa2~precise) precise; urgency=low +tryton-modules-company (2.8.1-1ubuntu0~ppa1~precise) precise; urgency=low * Ubuntu build - -- Ilya Melnikov Thu, 26 Jun 2014 21:22:34 +0600 + -- Ilya Melnikov Fri, 24 Apr 2015 12:54:03 +0500 + +tryton-modules-company (2.8.1-1) unstable; urgency=medium + + * Fixing the branch version in the watch file. + * Merging upstream version 2.8.1. + * Updating copyright file. + + -- Mathias Behrle Tue, 03 Mar 2015 11:57:56 +0100 tryton-modules-company (2.8.0-3) unstable; urgency=low diff -Nru tryton-modules-company-2.8.0/debian/copyright tryton-modules-company-2.8.1/debian/copyright --- tryton-modules-company-2.8.0/debian/copyright 2014-06-26 14:44:27.000000000 +0000 +++ tryton-modules-company-2.8.1/debian/copyright 2015-04-24 07:45:50.000000000 +0000 @@ -1,9 +1,9 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Files: * -Copyright: 2008-2013 Cédric Krier +Copyright: 2008-2015 Cédric Krier 2008-2013 Bertrand Chenal - 2008-2013 B2CK SPRL + 2008-2015 B2CK SPRL License: GPL-3+ Files: debian/* diff -Nru tryton-modules-company-2.8.0/PKG-INFO tryton-modules-company-2.8.1/PKG-INFO --- tryton-modules-company-2.8.0/PKG-INFO 2013-04-22 09:00:37.000000000 +0000 +++ tryton-modules-company-2.8.1/PKG-INFO 2015-02-28 21:47:59.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: trytond_company -Version: 2.8.0 +Version: 2.8.1 Summary: Tryton module with companies and employees Home-page: http://www.tryton.org/ Author: Tryton diff -Nru tryton-modules-company-2.8.0/tests/test_company.py tryton-modules-company-2.8.1/tests/test_company.py --- tryton-modules-company-2.8.0/tests/test_company.py 2013-03-20 21:54:04.000000000 +0000 +++ tryton-modules-company-2.8.1/tests/test_company.py 2015-02-28 21:47:43.000000000 +0000 @@ -9,6 +9,8 @@ sys.path.insert(0, os.path.dirname(DIR)) import unittest +import doctest + import trytond.tests.test_tryton from trytond.tests.test_tryton import POOL, DB_NAME, USER, CONTEXT, test_view,\ test_depends @@ -162,7 +164,7 @@ suite = trytond.tests.test_tryton.suite() from trytond.modules.currency.tests import test_currency for test in test_currency.suite(): - if test not in suite: + if test not in suite and not isinstance(test, doctest.DocTestCase): suite.addTest(test) suite.addTests(unittest.TestLoader().loadTestsFromTestCase( CompanyTestCase)) diff -Nru tryton-modules-company-2.8.0/tryton.cfg tryton-modules-company-2.8.1/tryton.cfg --- tryton-modules-company-2.8.0/tryton.cfg 2013-04-22 09:00:29.000000000 +0000 +++ tryton-modules-company-2.8.1/tryton.cfg 2014-03-04 23:23:09.000000000 +0000 @@ -1,5 +1,5 @@ [tryton] -version=2.8.0 +version=2.8.1 depends: currency ir diff -Nru tryton-modules-company-2.8.0/trytond_company.egg-info/PKG-INFO tryton-modules-company-2.8.1/trytond_company.egg-info/PKG-INFO --- tryton-modules-company-2.8.0/trytond_company.egg-info/PKG-INFO 2013-04-22 09:00:36.000000000 +0000 +++ tryton-modules-company-2.8.1/trytond_company.egg-info/PKG-INFO 2015-02-28 21:47:58.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: trytond-company -Version: 2.8.0 +Version: 2.8.1 Summary: Tryton module with companies and employees Home-page: http://www.tryton.org/ Author: Tryton diff -Nru tryton-modules-company-2.8.0/trytond_company.egg-info/SOURCES.txt tryton-modules-company-2.8.1/trytond_company.egg-info/SOURCES.txt --- tryton-modules-company-2.8.0/trytond_company.egg-info/SOURCES.txt 2013-04-22 09:00:36.000000000 +0000 +++ tryton-modules-company-2.8.1/trytond_company.egg-info/SOURCES.txt 2015-02-28 21:47:59.000000000 +0000 @@ -12,10 +12,38 @@ tryton.cfg ./__init__.py ./company.py +./company.xml ./cron.py +./cron.xml +./header_A4.odt +./letter.odt ./party.py +./tryton.cfg +./locale/bg_BG.po +./locale/ca_ES.po +./locale/cs_CZ.po +./locale/de_DE.po +./locale/es_AR.po +./locale/es_CO.po +./locale/es_ES.po +./locale/fr_FR.po +./locale/nl_NL.po +./locale/ru_RU.po ./tests/__init__.py ./tests/test_company.py +./view/company_config_start_form.xml +./view/company_form.xml +./view/company_list.xml +./view/company_tree.xml +./view/cron_form.xml +./view/employee_form.xml +./view/employee_tree.xml +./view/property_form.xml +./view/property_tree.xml +./view/sequence_form.xml +./view/sequence_tree.xml +./view/user_form.xml +./view/user_form_preferences.xml doc/index.rst locale/bg_BG.po locale/ca_ES.po