diff --git a/CHANGES.rst b/CHANGES.rst index f21a375..cb5173e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,29 @@ This file compiles releases and changes made in .. towncrier release notes start +odoo-openupgrade-wizard 1.1.0 (2024-11-07) +========================================== + +Features +-------- + +- Support 17.0 serie. +- Support 18.0 serie. +- add a new command ``odoo-openupgrade-wizard guess-requirement`` that + initialize the python and bin requirements files, based on the odoo + modules present in the modules.csv file, and analyzing code. + (``__manifest__.py`` and ``setup.py`` files) + + +Misc +---- + +- Add support of python 3.13. +- Test only on the first and the last supported python version. (python3.9 and + python3.13). + This change allow to save time and resources on CI execution. + + odoo-openupgrade-wizard 1.0.3 (2024-10-09) ========================================== diff --git a/newsfragments/add-17.0 b/newsfragments/add-17.0 deleted file mode 100644 index f222b5a..0000000 --- a/newsfragments/add-17.0 +++ /dev/null @@ -1 +0,0 @@ -Support 17.0 serie. diff --git a/newsfragments/add-18.0 b/newsfragments/add-18.0 deleted file mode 100644 index cbec939..0000000 --- a/newsfragments/add-18.0 +++ /dev/null @@ -1 +0,0 @@ -Support 18.0 serie. diff --git a/newsfragments/guess-requirement.feature b/newsfragments/guess-requirement.feature deleted file mode 100644 index daeb99b..0000000 --- a/newsfragments/guess-requirement.feature +++ /dev/null @@ -1,4 +0,0 @@ -add a new command ``odoo-openupgrade-wizard guess-requirement`` that -initialize the python and bin requirements files, based on the odoo -modules present in the modules.csv file, and analyzing code. -(``__manifest__.py`` and ``setup.py`` files) diff --git a/newsfragments/python3-13.misc b/newsfragments/python3-13.misc deleted file mode 100644 index 270a4d6..0000000 --- a/newsfragments/python3-13.misc +++ /dev/null @@ -1 +0,0 @@ -Add support of python 3.13. diff --git a/newsfragments/remove-python3.9-3.10-3.11 b/newsfragments/remove-python3.9-3.10-3.11 deleted file mode 100644 index 5fe1a49..0000000 --- a/newsfragments/remove-python3.9-3.10-3.11 +++ /dev/null @@ -1,2 +0,0 @@ -Test only on the first and the last supported python version. (python3.9 and python3.13). -This change allow to save time and resources on CI execution. diff --git a/pyproject.toml b/pyproject.toml index a4b33c7..ba3bac5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odoo-openupgrade-wizard" -version = "1.0.3" +version = "1.1.0" description = "CLI tool to manage Odoo Major Upgrades" authors = [ "Sylvain LE GAL ",