diff --git a/CHANGELOG.md b/CHANGELOG.md index f211867..12efe79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2023-10-19 + +### Changed + +- ledger-manifest: devices are output as a list "[...]" rather than a set "{...}" for easier + reusability. + + ## [0.1.0] - 2023-10-17 ### Added diff --git a/src/ledgered/utils/manifest.py b/src/ledgered/utils/manifest.py index d31fde6..010eec5 100644 --- a/src/ledgered/utils/manifest.py +++ b/src/ledgered/utils/manifest.py @@ -221,7 +221,7 @@ def main(): # pragma: no cover if args.output_sdk: display_content["sdk"] = repo_manifest.app.sdk if args.output_devices: - display_content["devices"] = repo_manifest.app.devices + display_content["devices"] = list(repo_manifest.app.devices) if args.output_unit_directory: if repo_manifest.tests is None or repo_manifest.test.unit_directory is None: logging.error("This manifest does not contains the 'tests.unit_directory' field")