[tryton-debian-vcs] tryton-modules-project branch debian-stretch-3.8 updated. debian/3.8.0-2-5-gfb97f69

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Mon Oct 3 14:15:14 UTC 2016


The following commit has been merged in the debian-stretch-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project.git;a=commitdiff;h=debian/3.8.0-2-5-gfb97f69

commit fb97f696d1a143ea19ec7ec131ed8941ad169881
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Oct 3 12:55:40 2016 +0200

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

diff --git a/debian/changelog b/debian/changelog
index 292a77f..596a343 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+tryton-modules-project (3.8.1-1) unstable; urgency=medium
+
+  * Updating signing-key.asc with the actual upstream maintainer keys.
+  * Setting the branch in the watch file to the fixed version 3.8.
+  * Merging upstream version 3.8.1.
+  * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Mon, 03 Oct 2016 12:55:40 +0200
+
 tryton-modules-project (3.8.0-2) unstable; urgency=medium
 
   * Updating to standards version 3.9.7, no changes needed.
commit 648a24b1a8fd590b2e0d8bade17f431e2df7b7e0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Oct 3 12:55:39 2016 +0200

    Updating copyright file.

diff --git a/debian/copyright b/debian/copyright
index 0048d3c..1dcb240 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,8 +1,8 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
 Files: *
-Copyright: 2008-2015 Cédric Krier
-           2008-2015 B2CK SPRL
+Copyright: 2008-2016 Cédric Krier
+           2008-2016 B2CK SPRL
            2009-2013 Bertrand Chenal
 License: GPL-3+
 
commit 1f12ad7f419ccc0540f8c0df7a980efe933aecfd
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Oct 3 12:55:39 2016 +0200

    Merging upstream version 3.8.1.

diff --git a/CHANGELOG b/CHANGELOG
index 21c0af1..ed8ca8a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.1 - 2016-10-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.0 - 2015-11-02
 * Bug fixes (see mercurial logs for details)
 * Add progress of work
diff --git a/COPYRIGHT b/COPYRIGHT
index dde6c87..60f26e4 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2008-2015 Cédric Krier.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2016 Cédric Krier.
+Copyright (C) 2008-2016 B2CK SPRL.
 Copyright (C) 2009-2013 Bertrand Chenal.
 
 This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index f8b83e7..2bb9e76 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_project
-Version: 3.8.0
+Version: 3.8.1
 Summary: Tryton module with projects
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index dcf76f4..8c8b2d9 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.8.0
+version=3.8.1
 depends:
     company_work_time
     ir
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index 001b9b5..837b8d0 100644
--- a/trytond_project.egg-info/PKG-INFO
+++ b/trytond_project.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-project
-Version: 3.8.0
+Version: 3.8.1
 Summary: Tryton module with projects
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/trytond_project.egg-info/requires.txt b/trytond_project.egg-info/requires.txt
index 6201d74..2fa8ea1 100644
--- a/trytond_project.egg-info/requires.txt
+++ b/trytond_project.egg-info/requires.txt
@@ -2,4 +2,4 @@ python-sql >= 0.4
 trytond_company_work_time >= 3.8, < 3.9
 trytond_party >= 3.8, < 3.9
 trytond_timesheet >= 3.8, < 3.9
-trytond >= 3.8, < 3.9
\ No newline at end of file
+trytond >= 3.8, < 3.9
diff --git a/work.py b/work.py
index 483e8d8..c642f9b 100644
--- a/work.py
+++ b/work.py
@@ -396,7 +396,8 @@ class Work(ModelSQL, ModelView):
         super(Work, cls).delete(project_works)
 
         if timesheet_works:
-            TimesheetWork.delete(timesheet_works)
+            with Transaction().set_context(_check_access=False):
+                TimesheetWork.delete(timesheet_works)
 
     @classmethod
     def search_global(cls, text):
-- 
tryton-modules-project



More information about the tryton-debian-vcs mailing list