Merge branch 'bump-version-1.0.1' into 'main'

Bump version 1.0.1

See merge request odoo-openupgrade-wizard/odoo-openupgrade-wizard!82
This commit is contained in:
Rémy Taymans 2024-10-01 10:43:32 +00:00
commit 5a511fa43d
4 changed files with 44 additions and 4 deletions

View File

@ -6,6 +6,24 @@ This file compiles releases and changes made in
.. towncrier release notes start .. towncrier release notes start
odoo-openupgrade-wizard 1.0.1 (2024-10-01)
==========================================
Features
--------
- Avoid to crash if postgresql-version is not set, adding prompt option
and add extra text to mention postgresql version constraints.
(postgresql-version-prompt)
Misc
----
- Refactor to simplify configuration_version_dependant.py file.
(version-simplification)
odoo-openupgrade-wizard 1.0.0 (2024-09-30) odoo-openupgrade-wizard 1.0.0 (2024-09-30)
========================================== ==========================================

View File

@ -1,2 +0,0 @@
* Avoid to crash if postgresql-version is not set, adding prompt option.
* add extra text to mention postgresql version constraints.

View File

@ -1 +0,0 @@
Refactor to simplify configuration_version_dependant.py file.

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "odoo-openupgrade-wizard" name = "odoo-openupgrade-wizard"
version = "1.0.0" version = "1.0.1"
description = "CLI tool to manage Odoo Major Upgrades" description = "CLI tool to manage Odoo Major Upgrades"
authors = [ authors = [
"Sylvain LE GAL <sylvain.legal@grap.coop>", "Sylvain LE GAL <sylvain.legal@grap.coop>",
@ -79,3 +79,28 @@ package_dir = "."
filename = "CHANGES.rst" filename = "CHANGES.rst"
directory = "newsfragments" directory = "newsfragments"
wrap = true wrap = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true
[[tool.towncrier.type]]
directory = "removal"
name = "Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = true