diff --git a/CHANGES.rst b/CHANGES.rst index 3816cf1..def5bf6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,21 @@ This file compiles releases and changes made in .. towncrier release notes start +odoo-openupgrade-wizard 1.0.2 (2024-10-06) +========================================== + +Bugfixes +-------- + +- Added a check to ensure the source exists before database operations, + preventing the destination from being dropped if the source is missing. + (check-db-exist-before-operations) +- Fix error that append randomly when removing a container. (container-removal) +- Require to specify the --database arg for every command that needs it + (install_from_csv, psql, run, generate_module_analysis) + (require-database-arg) + + odoo-openupgrade-wizard 1.0.1 (2024-10-01) ========================================== diff --git a/newsfragments/check-db-exist-before-operations.fix b/newsfragments/check-db-exist-before-operations.fix deleted file mode 100644 index d68220a..0000000 --- a/newsfragments/check-db-exist-before-operations.fix +++ /dev/null @@ -1,2 +0,0 @@ -Added a check to ensure the source exists before database operations, -preventing the destination from being dropped if the source is missing. diff --git a/newsfragments/require-database-arg.fix b/newsfragments/require-database-arg.fix deleted file mode 100644 index fdb7789..0000000 --- a/newsfragments/require-database-arg.fix +++ /dev/null @@ -1,2 +0,0 @@ -Require to specify the --database arg for every command that needs it -(install_from_csv, psql, run, generate_module_analysis) diff --git a/pyproject.toml b/pyproject.toml index 2dc66d1..141c426 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odoo-openupgrade-wizard" -version = "1.0.1" +version = "1.0.2" description = "CLI tool to manage Odoo Major Upgrades" authors = [ "Sylvain LE GAL ",