Release 2.2

This commit is contained in:
Jan Kiszka 2020-08-20 09:17:34 +02:00
parent 9518dc4e35
commit 22b489b33b
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,14 @@
2.2
- kas: allow extra bitbake arguments to be passed
- kas: add --force-checkout and --update arguments to ease CI usage
- kas: allow for layer-free repositories
- kas: fix cloning of repos without default branch
- kas: enable standard-conforming .yaml file extensions
- kas-docker: enhance with podman support
- kas-docker: switch to /bin/bash as SHELL per default
- config: Allow a default refspec to be specified
- config: Allow a default repo to be specified for patches
2.1.1 2.1.1
- repos: Silence pycodestyle error (that broke docker image generation) - repos: Silence pycodestyle error (that broke docker image generation)

View File

@ -63,7 +63,7 @@ trace()
} }
if [ -z "${KAS_IMAGE_VERSION}" ]; then if [ -z "${KAS_IMAGE_VERSION}" ]; then
KAS_IMAGE_VERSION="2.1.1" KAS_IMAGE_VERSION="2.2"
fi fi
DOCKER_IMAGE=kasproject/kas:${KAS_IMAGE_VERSION} DOCKER_IMAGE=kasproject/kas:${KAS_IMAGE_VERSION}

View File

@ -25,7 +25,7 @@
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018' __copyright__ = 'Copyright (c) Siemens AG, 2017-2018'
__version__ = '2.1.1' __version__ = '2.2'
# Please update docs/format-changelog.rst when changing the file version. # Please update docs/format-changelog.rst when changing the file version.
__file_version__ = 9 __file_version__ = 9