From 50ca5735de39ce757ee9219f9b0546a61722b366 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jun 2022 11:44:53 -0500 Subject: [PATCH] chore: Release 0.2.0 (#479) Co-authored-by: edgarrmondragon Co-authored-by: Edgar R. M --- .changes/0.2.0.md | 5 +++++ .changes/unreleased/Added-20220619-204107.yaml | 5 ----- .changes/unreleased/Fixed-20220620-104436.yaml | 5 ----- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 11 deletions(-) create mode 100644 .changes/0.2.0.md delete mode 100644 .changes/unreleased/Added-20220619-204107.yaml delete mode 100644 .changes/unreleased/Fixed-20220620-104436.yaml diff --git a/.changes/0.2.0.md b/.changes/0.2.0.md new file mode 100644 index 00000000..e6c49e6c --- /dev/null +++ b/.changes/0.2.0.md @@ -0,0 +1,5 @@ +## 0.2.0 - 2022-06-20 +### Added +* [#475](https://github.com/edgarrmondragon/citric/issues/475) Implement `update_response` in client +### Fixed +* [#477](https://github.com/edgarrmondragon/citric/issues/477) Reduce number of calls to `list_questions` from `add_responses` \ No newline at end of file diff --git a/.changes/unreleased/Added-20220619-204107.yaml b/.changes/unreleased/Added-20220619-204107.yaml deleted file mode 100644 index 8c92b978..00000000 --- a/.changes/unreleased/Added-20220619-204107.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: Added -body: Implement `update_response` in client -time: 2022-06-19T20:41:07.799103-05:00 -custom: - Issue: "475" diff --git a/.changes/unreleased/Fixed-20220620-104436.yaml b/.changes/unreleased/Fixed-20220620-104436.yaml deleted file mode 100644 index 032f46e4..00000000 --- a/.changes/unreleased/Fixed-20220620-104436.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: Fixed -body: Reduce number of calls to `list_questions` from `add_responses` -time: 2022-06-20T10:44:36.403681-05:00 -custom: - Issue: "477" diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c19a3b1..24d4364a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 0.2.0 - 2022-06-20 +### Added +* [#475](https://github.com/edgarrmondragon/citric/issues/475) Implement `update_response` in client +### Fixed +* [#477](https://github.com/edgarrmondragon/citric/issues/477) Reduce number of calls to `list_questions` from `add_responses` + ## 0.1.0 - 2022-06-17 ### Added * [#213](https://github.com/edgarrmondragon/citric/issues/213) Implement `delete_question` in client diff --git a/pyproject.toml b/pyproject.toml index 60f89a21..20d7d86a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "citric" -version = "0.1.0" +version = "0.2.0" description="A client to the LimeSurvey Remote Control API 2, written in modern Python." license = "MIT" authors = ["Edgar Ramírez-Mondragón "]