This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 8facce407f Fixing a bug in marking a commit as MISC while releasing
providers (#41213)
8facce407f is described below
commit 8facce407ff8aabc2ed46d52d005712328461f4e
Author: Amogh Desai <[email protected]>
AuthorDate: Fri Aug 2 19:52:32 2024 +0530
Fixing a bug in marking a commit as MISC while releasing providers (#41213)
---
.../src/airflow_breeze/prepare_providers/provider_documentation.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
index 12ec4d670b..e7b59becf4 100644
--- a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
+++ b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
@@ -179,9 +179,10 @@ class PrepareReleaseDocsUserQuitException(Exception):
TYPE_OF_CHANGE_DESCRIPTION = {
TypeOfChange.DOCUMENTATION: "Documentation only changes - no version
change needed, "
"only documentation needs to be updated",
- TypeOfChange.BUGFIX: "Bugfix/Misc changes only - bump in PATCHLEVEL
version needed",
+ TypeOfChange.BUGFIX: "Bugfix changes only - bump in PATCHLEVEL version
needed",
TypeOfChange.FEATURE: "Feature changes - bump in MINOR version needed",
TypeOfChange.BREAKING_CHANGE: "Breaking changes - bump in MAJOR version
needed",
+ TypeOfChange.MISC: "Miscellaneous changes - bump in PATCHLEVEL version
needed",
}