[tryton-debian-vcs] tryton-modules-stock-supply-forecast branch debian-stretch-3.6 updated. debian/3.6.0-1-8-g17ed057

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


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

commit 17ed0573b0ef15435e46ac0c2380e2a759dfb5ba
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:44:12 2017 +0100

    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 e786dc1..fdc79ee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+tryton-modules-stock-supply-forecast (3.6.1-1) unstable; urgency=medium
+
+  * Updating year of debian copyright.
+  * Adapting section naming in gbp.conf to current git-buildpackage.
+  * Improving description why we can not run the module test suites.
+  * Setting the branch in the watch file to the fixed version 3.6.
+  * Updating signing-key.asc with the actual upstream maintainer keys.
+  * Merging upstream version 3.6.1.
+  * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 04 Jan 2017 12:44:12 +0100
+
 tryton-modules-stock-supply-forecast (3.6.0-1) unstable; urgency=medium
 
   * Adding actual upstream signing key.
commit e377d606be592d8eb35738f635575d0e7137b8f5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:44:11 2017 +0100

    Updating copyright file.

diff --git a/debian/copyright b/debian/copyright
index 3e86df4..778af0c 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-2015 Cédric Krier
-           2011-2015 B2CK SPRL
+Copyright: 2011-2017 Cédric Krier
+           2011-2017 B2CK SPRL
 License: GPL-3+
 
 Files: debian/*
commit 86a33164fcce9e78fbc77c712d9b8f75d2a25663
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:44:11 2017 +0100

    Merging upstream version 3.6.1.

diff --git a/CHANGELOG b/CHANGELOG
index 824163d..036a6b5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2017-01-03
+* 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/COPYRIGHT b/COPYRIGHT
index 196a420..4f1c2b0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2011-2015 Cédric Krier.
-Copyright (C) 2011-2015 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 9c3b187..459a953 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_stock_supply_forecast
-Version: 3.6.0
+Version: 3.6.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 459d25c..f803609 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 be11eec..5294a01 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.6.0
+version=3.6.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 32e0ea3..78dfa47 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: 3.6.0
+Version: 3.6.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 d3d7fa9..eb80332 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 >= 3.6, < 3.7
 trytond_stock_forecast >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.6, < 3.7
-- 
tryton-modules-stock-supply-forecast



More information about the tryton-debian-vcs mailing list