From ef561dc58b5d9be54c6eff8453636b9a756b4b2d Mon Sep 17 00:00:00 2001 From: Christopher Ormaza Date: Fri, 10 Dec 2021 11:23:00 -0500 Subject: [PATCH] [15.0][MIG] stock_helper --- stock_helper/README.rst | 3 ++- stock_helper/__manifest__.py | 2 +- stock_helper/readme/CONTRIBUTORS.rst | 1 + stock_helper/tests/common.py | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/stock_helper/README.rst b/stock_helper/README.rst index d32d93572..4339d4900 100644 --- a/stock_helper/README.rst +++ b/stock_helper/README.rst @@ -23,7 +23,7 @@ Stock Helpers :target: https://runbot.odoo-community.org/runbot/153/14.0 :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| Add methods to be used by other modules. This is not a functional module. @@ -54,6 +54,7 @@ Contributors ~~~~~~~~~~~~ * Guewen Baconnier +* Christopher Ormaza Maintainers ~~~~~~~~~~~ diff --git a/stock_helper/__manifest__.py b/stock_helper/__manifest__.py index 086d7070a..432c9e52c 100644 --- a/stock_helper/__manifest__.py +++ b/stock_helper/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Helpers", "summary": "Add methods shared between various stock modules", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "author": "Camptocamp, Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", "category": "Hidden", diff --git a/stock_helper/readme/CONTRIBUTORS.rst b/stock_helper/readme/CONTRIBUTORS.rst index 48286263c..1cedc7fc7 100644 --- a/stock_helper/readme/CONTRIBUTORS.rst +++ b/stock_helper/readme/CONTRIBUTORS.rst @@ -1 +1,2 @@ * Guewen Baconnier +* Christopher Ormaza diff --git a/stock_helper/tests/common.py b/stock_helper/tests/common.py index 871a216ad..f7515a7a1 100644 --- a/stock_helper/tests/common.py +++ b/stock_helper/tests/common.py @@ -1,10 +1,10 @@ # Copyright 2020-2021 Camptocamp SA # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). -from odoo.tests import SavepointCase +from odoo.tests import TransactionCase -class StockHelperCommonCase(SavepointCase): +class StockHelperCommonCase(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass()