diff --git a/CHANGELOG.md b/CHANGELOG.md index 7349c13..133c101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +3.0 +- kas: git fetch always with quiet flag, suppressing false error messages +- kas: Add BB_ENV_PASSTHROUGH_ADDITIONS support +- kas: shell: Add option to keep current environment +- kas: Raise an error on missing repo refspec +- kas-container: Base containers on bullseye +- kas-container: Add pigz package to container to enable parallel compression +- kas-container: Support for sbuild in kas-isar +- kas-container: podman: Remove --pid=host +- kas-container: Start init service inside container +- kas-container: Add cleansstate and cleanall +- kas-container: Pass http_proxy et.al through sudo +- kas-container: Address shellcheck findings in container-entrypoint +- docs: Add recommendation for repo-id naming +- docs: Clarify local file include paths + 2.6.3 - kas: Do not overwrite existing .ssh/config - kas: Properly describe package build diff --git a/kas-container b/kas-container index 094a89b..cba5e43 100755 --- a/kas-container +++ b/kas-container @@ -125,7 +125,7 @@ run_clean() { fi } -KAS_IMAGE_VERSION_DEFAULT="2.6.3" +KAS_IMAGE_VERSION_DEFAULT="3.0" KAS_CONTAINER_IMAGE_PATH_DEFAULT="ghcr.io/siemens/kas" KAS_CONTAINER_IMAGE_NAME_DEFAULT="kas" diff --git a/kas/__version__.py b/kas/__version__.py index cf824b9..709586f 100644 --- a/kas/__version__.py +++ b/kas/__version__.py @@ -25,7 +25,7 @@ __license__ = 'MIT' __copyright__ = 'Copyright (c) Siemens AG, 2017-2020' -__version__ = '2.6.3' +__version__ = '3.0' # Please update docs/format-changelog.rst when changing the file version. __file_version__ = 11