diff --git a/CHANGELOG.md b/CHANGELOG.md index a152379..836eefc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.11.1] - 2023-06-05 + +### Fixed + +- nrfutil toolchain manager binary now needs --ncs-version flag when + installing toolchains. + ## [0.11.0] - 2023-06-05 ### Changed @@ -219,7 +226,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Docker scripts for building and running docker containers, for development purposes. -[Unreleased]: https://github.com/IRNAS/irnas-east-software/compare/v0.11.0...HEAD +[Unreleased]: https://github.com/IRNAS/irnas-east-software/compare/v0.11.1...HEAD + +[0.11.1]: https://github.com/IRNAS/irnas-east-software/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/IRNAS/irnas-east-software/compare/v0.10.1...v0.11.0 diff --git a/src/east/workspace_commands/update_commands.py b/src/east/workspace_commands/update_commands.py index ebe3a87..f19c86f 100644 --- a/src/east/workspace_commands/update_commands.py +++ b/src/east/workspace_commands/update_commands.py @@ -55,7 +55,7 @@ def toolchain(east, force): f" version [bold]{east.detected_ncs_version}[/], this will take some time...\n", highlight=False, ) - east.run_manager(f"install {east.detected_ncs_version}") + east.run_manager(f"install --ncs-version {east.detected_ncs_version}") east.print("\n[bold green]Done!")