[tryton-debian-vcs] tryton-modules-stock-supply-forecast branch debian-stretch-4.0 updated. debian/4.0.0-1-5-g2b5524e

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Jan 5 10:57:59 UTC 2017


The following commit has been merged in the debian-stretch-4.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock-supply-forecast.git;a=commitdiff;h=debian/4.0.0-1-5-g2b5524e

commit 2b5524e49957e3e7f6040737ed711446910847c3
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:46:26 2017 +0100

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

diff --git a/debian/changelog b/debian/changelog
index b7d0ed7..9b69e0d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+tryton-modules-stock-supply-forecast (4.0.1-1) unstable; urgency=medium
+
+  * Updating to Standards-Version: 3.9.8, no changes needed.
+  * Setting the branch in the watch file to the fixed version 4.0.
+  * Merging upstream version 4.0.1.
+  * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 04 Jan 2017 12:46:26 +0100
+
 tryton-modules-stock-supply-forecast (4.0.0-1) unstable; urgency=medium
 
   * Updating signing-key.asc with the actual upstream maintainer keys.
commit f7fc598a26bf812e77d788108ad4aa4df442c6d1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:46:25 2017 +0100

    Updating copyright file.

diff --git a/debian/copyright b/debian/copyright
index a19fa73..66d0c5e 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: 2011-2016 Cédric Krier
-           2011-2016 B2CK SPRL
+Copyright: 2011-2017 Cédric Krier
+           2011-2017 B2CK SPRL
 License: GPL-3+
 
 Files: debian/*
commit ab933b727e92cbd592be8205cbbe49e7ca0139d5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:46:25 2017 +0100

    Merging upstream version 4.0.1.

diff --git a/CHANGELOG b/CHANGELOG
index e753532..6154724 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.1 - 2017-01-03
+* Bug fixes (see mercurial logs for details)
+
 Version 4.0.0 - 2016-05-02
 * Bug fixes (see mercurial logs for details)
 * Add Python3 support
diff --git a/COPYRIGHT b/COPYRIGHT
index 93ef5be..4f1c2b0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2011-2016 Cédric Krier.
-Copyright (C) 2011-2016 B2CK SPRL.
+Copyright (C) 2011-2017 Cédric Krier.
+Copyright (C) 2011-2017 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 --git a/PKG-INFO b/PKG-INFO
index 1dc984f..6077af2 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_stock_supply_forecast
-Version: 4.0.0
+Version: 4.0.1
 Summary: Tryton module to add forecast to supply computation
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/purchase_request.py b/purchase_request.py
index 479894b..245b45e 100644
--- a/purchase_request.py
+++ b/purchase_request.py
@@ -10,7 +10,7 @@ class PurchaseRequest:
     __name__ = 'purchase.request'
 
     @classmethod
-    def generate_requests(cls):
+    def generate_requests(cls, *args, **kwargs):
         pool = Pool()
         Forecast = pool.get('stock.forecast')
         Date = pool.get('ir.date')
@@ -22,5 +22,5 @@ class PurchaseRequest:
                 ('state', '=', 'done'),
                 ])
         Forecast.create_moves(forecasts)
-        super(PurchaseRequest, cls).generate_requests()
+        super(PurchaseRequest, cls).generate_requests(*args, **kwargs)
         Forecast.delete_moves(forecasts)
diff --git a/tryton.cfg b/tryton.cfg
index 98d7bcb..4666d8f 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.0.0
+version=4.0.1
 depends:
     ir
     stock_supply
diff --git a/trytond_stock_supply_forecast.egg-info/PKG-INFO b/trytond_stock_supply_forecast.egg-info/PKG-INFO
index b530a81..7669257 100644
--- a/trytond_stock_supply_forecast.egg-info/PKG-INFO
+++ b/trytond_stock_supply_forecast.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-stock-supply-forecast
-Version: 4.0.0
+Version: 4.0.1
 Summary: Tryton module to add forecast to supply computation
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/trytond_stock_supply_forecast.egg-info/requires.txt b/trytond_stock_supply_forecast.egg-info/requires.txt
index 93a1a2d..ff3f96f 100644
--- a/trytond_stock_supply_forecast.egg-info/requires.txt
+++ b/trytond_stock_supply_forecast.egg-info/requires.txt
@@ -1,3 +1,3 @@
 trytond_stock_supply >= 4.0, < 4.1
 trytond_stock_forecast >= 4.0, < 4.1
-trytond >= 4.0, < 4.1
\ No newline at end of file
+trytond >= 4.0, < 4.1
-- 
tryton-modules-stock-supply-forecast



More information about the tryton-debian-vcs mailing list