From 852ca9ff7fff7a95789b706972b968ec9c5cff34 Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Fri, 20 Aug 2021 07:43:05 -0400 Subject: [PATCH] [release-1.22] Bump to v1.22.3 Bumping to v1.22.3. The v1.22.2 tag/release that was created was created badly and is messing up go modules. Per @vrothberg, the only fix is to bump the version and create a new release. [NO TESTS NEEDED] [NO NEW TESTS NEEDED] Signed-off-by: TomSweeneyRedHat --- CHANGELOG.md | 3 +++ changelog.txt | 3 +++ contrib/rpm/buildah.spec | 5 +++-- define/types.go | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d1088c70be..ab926d49666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ![buildah logo](https://cdn.rawgit.com/containers/buildah/main/logos/buildah-logo_large.png) # Changelog +## v1.22.3 (2021-08-20) + * [release-1.22] bump to v1.22.3 + ## v1.22.2 (2021-08-19) * [release-1.22] bump c/image to v5.15.2 diff --git a/changelog.txt b/changelog.txt index 712b3d8e451..066fca0f28f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +- Changelog for v1.22.3 (2021-08-20) + * [release-1.22] bump to v1.22.3 + - Changelog for v1.22.2 (2021-08-19) * [release-1.22] bump c/image to v5.15.2 diff --git a/contrib/rpm/buildah.spec b/contrib/rpm/buildah.spec index f3f18d11b3e..1936bae6807 100644 --- a/contrib/rpm/buildah.spec +++ b/contrib/rpm/buildah.spec @@ -26,7 +26,7 @@ Name: buildah # Bump version in define/types.go too -Version: 1.22.3-dev +Version: 1.22.3 Release: 1.git%{shortcommit}%{?dist} Summary: A command line tool used to creating OCI Images License: ASL 2.0 @@ -100,7 +100,8 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions %{_datadir}/bash-completion/completions/* %changelog -* Thu Aug 19, 2021 Tom Sweeney 1.22.3-dev-1 +* Fri Aug 20, 2021 Tom Sweeney 1.22.3-1 +- [release-1.22] bump to v1.22.3 * Thu Aug 19, 2021 Tom Sweeney 1.22.2-1 - [release-1.22] bump c/image to v5.15.2 diff --git a/define/types.go b/define/types.go index 96510c7f8d7..8676a574c9d 100644 --- a/define/types.go +++ b/define/types.go @@ -28,7 +28,7 @@ const ( Package = "buildah" // Version for the Package. Bump version in contrib/rpm/buildah.spec // too. - Version = "1.22.3-dev" + Version = "1.22.3" // DefaultRuntime if containers.conf fails. DefaultRuntime = "runc"