Skip to content

Commit

Permalink
Add missing elements to history, fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMinarsch committed Mar 17, 2021
1 parent ba94f2e commit ec9af2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.11.2 (2020-03-17)

- Fixes a package import issue
- Fixes an issue where `AgentLoop` did not teardown properly under certain conditions
- Fixes a bug in testing tools
- Fixes a bug where plugins are not loaded after installation in `MultiAgentManager`
- Adds unit tests for weather, thermometer and car park skills
Expand Down
4 changes: 3 additions & 1 deletion scripts/update_package_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ def get_all_protocol_spec_ids() -> Set[PublicId]:
:return: a set of package ids.
"""
result: Set[PublicId] = set()
protocol_packages = set(PACKAGES_DIR.rglob("**/**/protocols/**")) - set(PACKAGES_DIR.rglob("**/**/protocols"))
protocol_packages = set(PACKAGES_DIR.rglob("**/**/protocols/**")) - set(
PACKAGES_DIR.rglob("**/**/protocols")
)
for protocol_package_path in protocol_packages:
content = get_protocol_specification_from_readme(protocol_package_path)
spec_id = get_protocol_specification_id_from_specification(content)
Expand Down

0 comments on commit ec9af2e

Please sign in to comment.