diff --git a/NEWS b/NEWS index 9f6a44cbc..2a76b7b58 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ # Releases +## perceval 1.0.5 - (2024-08-13) + +**Bug fixes:** + + * Fixed missing backend name in usage string (#799)\ + The `perceval` command-line tool now correctly displays the backend + name in the usage string when using the `--help` option. + + ## perceval 1.0.4 - (2024-08-09) * Update Poetry's package dependencies diff --git a/perceval/_version.py b/perceval/_version.py index 325254904..a213b4bbf 100644 --- a/perceval/_version.py +++ b/perceval/_version.py @@ -1,2 +1,2 @@ -# File auto-generated by semverup on 2024-08-13 09:45:20.274948 -__version__ = "1.0.5-rc.1" +# File auto-generated by semverup on 2024-08-13 10:45:59.941194 +__version__ = "1.0.5" diff --git a/pyproject.toml b/pyproject.toml index 997d2cf79..0d6e437be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "perceval" -version = "1.0.5-rc.1" +version = "1.0.5" description = "Send Sir Perceval on a quest to fetch and gather data from software repositories." authors = [ "GrimoireLab Developers" diff --git a/releases/1.0.5.md b/releases/1.0.5.md new file mode 100644 index 000000000..eeac8a8db --- /dev/null +++ b/releases/1.0.5.md @@ -0,0 +1,8 @@ +## perceval 1.0.5 - (2024-08-13) + +**Bug fixes:** + + * Fixed missing backend name in usage string (#799)\ + The `perceval` command-line tool now correctly displays the backend + name in the usage string when using the `--help` option. + diff --git a/releases/unreleased/processed/fixed-missing-backend-name-in-usage-string.yml b/releases/unreleased/processed/fixed-missing-backend-name-in-usage-string.yml deleted file mode 100644 index 6d35624c6..000000000 --- a/releases/unreleased/processed/fixed-missing-backend-name-in-usage-string.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Fixed missing backend name in usage string -category: fixed -author: Venu Vardhan Reddy Tekula -issue: 799 -notes: > - The `perceval` command-line tool now correctly displays the backend name in the usage string - when using the `--help` option.