[tryton-debian-vcs] tryton-modules-project branch debian updated. debian/4.0.1-1-3-g85eddd5
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Oct 3 14:15:13 UTC 2016
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project.git;a=commitdiff;h=debian/4.0.1-1-3-g85eddd5
commit 85eddd5170e38e793776fadd170c2be318df71c9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Oct 3 12:52:21 2016 +0200
Releasing debian version 4.0.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 17d6fbd..64acb42 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-project (4.0.2-1) unstable; urgency=medium
+
+ * Updating to Standards-Version: 3.9.8, no changes needed.
+ * Merging upstream version 4.0.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Mon, 03 Oct 2016 12:52:21 +0200
+
tryton-modules-project (4.0.1-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit 2f2af1b38eadadb04966705a84fd4a226e8028a7
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Oct 3 12:52:20 2016 +0200
Merging upstream version 4.0.2.
diff --git a/CHANGELOG b/CHANGELOG
index 4b9dbcc..6713b9c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.2 - 2016-10-02
+* Bug fixes (see mercurial logs for details)
+
Version 4.0.1 - 2016-05-11
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 17fca7e..0f45e77 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_project
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module with projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index 58e4809..1a98418 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.0.1
+version=4.0.2
depends:
company_work_time
ir
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index 69448a7..31c4be5 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: 4.0.1
+Version: 4.0.2
Summary: Tryton module with projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/work.py b/work.py
index 49bd333..05ac8f0 100644
--- a/work.py
+++ b/work.py
@@ -395,7 +395,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