Skip to content
Closed
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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ Change Log

.. There should always be an "Unreleased" section for changes pending release.

[unreleased] - 2020-11-06
~~~~~~~~~~~~~~~~~~~~~~~~~

* Adding incremental_release as another option for toggle_use_case
Alot of toggles in edx-platform are labeled incremental_release, which seems like a valid choice.
And this use case didn't seem captured by options that previously existed.

[0.10.0] - 2020-10-12
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 1 addition & 3 deletions code_annotations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@ def check_results(self, all_results):
for filename in all_results:
current_group = None
found_group_members = []

for annotation in all_results[filename]:
self._check_results_choices(annotation)
token = annotation['annotation_token']
Expand Down Expand Up @@ -478,9 +477,8 @@ def check_results(self, all_results):
self.echo.echo_vv("Group complete!")
current_group = None
found_group_members = []

if current_group:
self.errors.append('File finished with an incomplete group {}!'.format(current_group))
self.errors.append('{}: File finished with an incomplete group {}!'.format(filename, current_group))

return not self.errors

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ annotations:
- ".. toggle_default:":
- ".. toggle_description:":
- ".. toggle_use_cases:":
choices: [temporary, circuit_breaker, vip, opt_out, opt_in, open_edx]
choices: [incremental_release, temporary, circuit_breaker, vip, opt_out, opt_in, open_edx]
- ".. toggle_creation_date:":
- ".. toggle_target_removal_date:":
- ".. toggle_warnings:":
Expand Down