From 60cbbdb856319d089debd6baa055ca05f8c2efa0 Mon Sep 17 00:00:00 2001 From: Thorsten de Buhr Date: Fri, 30 Jun 2023 12:14:05 +0200 Subject: [PATCH] [cpackget] (#192) - updated copyright - updated CHANGELOG.md --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ LICENSE.txt | 2 +- cmd/version.go | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab587da..328ccc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,37 @@ +# v1.0.0 + +This v1.0.0 release contains: + +Bug fixes: +- Debug log level not working on some commands +- Use keil.com/pack/ as default address to fetch PDSC files, if index.pidx has been downloaded from keil.com/pack +- If PDSC file is no longer listed in index.pidx, it shall be removed from .Web folder +- touch pack.idx after init command +- refined --skip-touch option + +New features: +- update-index: added option "-a" to download all missing PDSC files that are listed in index.pidx +- Encoded progress, when tool is called from other tools + +# v0.9.4 + +This v0.9.4 release contains: + +Bug fixes: +- MacOS tests failing + +# v0.9.3 + +This v0.9.3 release contains: + +Bug fixes: +- cpackget add -f packlist.txt throws an error when the file is empty +- Installing a local pack that does not exist triggers error message twice +- add -f packs.txt: does not check if the required/dependent pack is installed already + +New features: +- added --skip-touch flag to not touch pack.idx + # v0.9.2 This v0.9.2 release contains: diff --git a/LICENSE.txt b/LICENSE.txt index 0914e60..40ebb4c 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2021 Linaro + (C) 2021-2023 Linaro, 2023 Arm Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cmd/version.go b/cmd/version.go index 5af5789..236e8be 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -5,4 +5,4 @@ package main var version string -const copyRight = "(C) 2022-2023 Linaro" +const copyRight = "(C) 2021-2023 Linaro, 2023 Arm Ltd."