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 "]