diff --git a/CHANGELOG.md b/CHANGELOG.md index 667d5f81f2a..4df459f5854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # Changelog +## v1.27.1 (2022-09-09) + + run: add container gid to additional groups. + ## v1.27.0 (2022-08-01) build: support filtering cache by duration using `--cache-ttl`. diff --git a/changelog.txt b/changelog.txt index a6fa96acf02..edac1c528cb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +- Changelog for v1.27.1 (2022-09-09) + * run: add container gid to additional groups. + - Changelog for v1.27.0 (2022-08-01) * build: support filtering cache by duration using `--cache-ttl`. * build: support building from commit when using git repo as build context. diff --git a/define/types.go b/define/types.go index 77e2529f833..cce41fc3f59 100644 --- a/define/types.go +++ b/define/types.go @@ -30,7 +30,7 @@ const ( Package = "buildah" // Version for the Package. Bump version in contrib/rpm/buildah.spec // too. - Version = "1.27.0" + Version = "1.27.1" // DefaultRuntime if containers.conf fails. DefaultRuntime = "runc"