Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release 0.10.0 #1040

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changes/0.10.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## 0.10.0 - 2023-11-29
### Added
* [#994](https://github.com/edgarrmondragon/citric/issues/994) Experimental support for the new REST API
* [#1016](https://github.com/edgarrmondragon/citric/issues/1016) Support `DestSurveyID` parameter in RPC method `copy_survey`
* [#1026](https://github.com/edgarrmondragon/citric/issues/1026) Support `userActivationSettings` parameter in RPC method `activate_survey`
### Fixed
* [#1026](https://github.com/edgarrmondragon/citric/issues/1026) Update `types.YesNo` to include inherited (`I`) values
### Documentation
* [#1035](https://github.com/edgarrmondragon/citric/issues/1035) Document how to disable TLS certificate verification
5 changes: 0 additions & 5 deletions .changes/unreleased/Added-20230920-033626.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/Added-20231028-222932.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/Added-20231109-165350.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/Documentation-20231117-152448.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/Fixed-20231109-165446.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ body:
attributes:
label: Citric Version
description: Version of the package you are using
placeholder: "0.9.0"
placeholder: "0.10.0"
validations:
required: true
- type: dropdown
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## 0.10.0 - 2023-11-29
### Added
* [#994](https://github.com/edgarrmondragon/citric/issues/994) Experimental support for the new REST API
* [#1016](https://github.com/edgarrmondragon/citric/issues/1016) Support `DestSurveyID` parameter in RPC method `copy_survey`
* [#1026](https://github.com/edgarrmondragon/citric/issues/1026) Support `userActivationSettings` parameter in RPC method `activate_survey`
### Fixed
* [#1026](https://github.com/edgarrmondragon/citric/issues/1026) Update `types.YesNo` to include inherited (`I`) values
### Documentation
* [#1035](https://github.com/edgarrmondragon/citric/issues/1035) Document how to disable TLS certificate verification

## 0.9.0 - 2023-10-11
### Added
* [#944](https://github.com/edgarrmondragon/citric/issues/944) Add `Client.get_server_version`
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Edgar"
orcid: "https://orcid.org/0000-0000-0000-0000"
title: "My Research Software"
version: "0.9.0"
version: "0.10.0"
doi: 10.5281/zenodo.1234
date-released: 2021-11-11
url: "https://github.com/edgarrmondragon/citric"
4 changes: 2 additions & 2 deletions src/citric/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def activate_survey(
Status and plugin feedback.

.. versionadded:: 0.0.1
.. versionchanged:: NEXT_VERSION
.. versionchanged:: 0.10.0
The ``user_activation_settings`` optional parameter was added.
"""
activation_settings = (
Expand Down Expand Up @@ -526,7 +526,7 @@ def copy_survey(
Dictionary of status message and the new survey ID.

.. versionadded:: 0.0.10
.. versionchanged:: NEXT_VERSION
.. versionchanged:: 0.10.0
The ``destination_survey_id`` optional parameter was added.
.. futureparam:: 6.4.0 destination_survey_id
"""
Expand Down
Loading