diff --git a/NEWS b/NEWS index 098de9f..29d5962 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,16 @@ # Releases +## perceval-zulip 0.1.1 - (2021-09-22) + +**Bug fixes:** + + * Change `email` to zulip argument group (#1)\ + The current implementation uses `token_auth` and supports `email` as + an argument. But, `email` is not an optional argument. The auth fails + if no `email` is provided. To handle this, the email is moved to a new + zulip argument group. Now, it throws an error is `email` is missing. + + ## perceval-zulip 0.1.0 - (2021-08-03) **New features:** diff --git a/perceval/_version.py b/perceval/_version.py index 6954e27..e703163 100644 --- a/perceval/_version.py +++ b/perceval/_version.py @@ -1,2 +1,2 @@ -# File auto-generated by semverup on 2021-08-03 19:35:41.854381 -__version__ = "0.1.0" +# File auto-generated by semverup on 2021-09-22 14:29:26.187786 +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index 42f0e06..b459ce7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "perceval-zulip" -version = "0.1.0" +version = "0.1.1" description = "Perceval backend for Zulip." authors = [ "GrimoireLab Developers" diff --git a/releases/0.1.1.md b/releases/0.1.1.md new file mode 100644 index 0000000..c6b1694 --- /dev/null +++ b/releases/0.1.1.md @@ -0,0 +1,10 @@ +## perceval-zulip 0.1.1 - (2021-09-22) + +**Bug fixes:** + + * Change `email` to zulip argument group (#1)\ + The current implementation uses `token_auth` and supports `email` as + an argument. But, `email` is not an optional argument. The auth fails + if no `email` is provided. To handle this, the email is moved to a new + zulip argument group. Now, it throws an error is `email` is missing. + diff --git a/releases/unreleased/change-`email`-to-zulip-argument-group.yml b/releases/unreleased/change-`email`-to-zulip-argument-group.yml deleted file mode 100644 index 3f31744..0000000 --- a/releases/unreleased/change-`email`-to-zulip-argument-group.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: Change `email` to zulip argument group -category: fixed -author: Venu Vardhan Reddy Tekula -issue: 1 -notes: > - The current implementation uses `token_auth` and supports - `email` as an argument. But, `email` is not an optional - argument. The auth fails if no `email` is provided. - - To handle this, the email is moved to a new zulip argument - group. Now, it throws an error is `email` is missing.