diff --git a/.buildah.metadata b/.buildah.metadata
new file mode 100644
index 0000000..22e5cdf
--- /dev/null
+++ b/.buildah.metadata
@@ -0,0 +1 @@
+09993f8aad3024403e1e2aa76aa3d11d1023cceb SOURCES/release-1.24-7b559a3.tar.gz
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e05dea5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+SOURCES/release-1.24-7b559a3.tar.gz
diff --git a/SOURCES/fix-bash-syntax.patch b/SOURCES/fix-bash-syntax.patch
new file mode 100644
index 0000000..e508848
--- /dev/null
+++ b/SOURCES/fix-bash-syntax.patch
@@ -0,0 +1,45 @@
+From eedab4fd872c3be8ab15af767897f92c78a71fde Mon Sep 17 00:00:00 2001
+From: Lokesh Mandvekar <lsm5@fedoraproject.org>
+Date: Mon, 21 Feb 2022 14:58:40 -0500
+Subject: [PATCH] helpers.bash: Use correct syntax
+
+Fixes gating test failure:
+```
+ /usr/share/buildah/test/system/./helpers.bash: line 474: !is_cgroupsv2: command not found
+ ```
+
+Co-authored-by: Yiqiao Pu <ypu@redhat.com>
+
+I'm just the committer.
+
+Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
+---
+ tests/helpers.bash | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/tests/helpers.bash b/tests/helpers.bash
+index bd2794c974..3e72108bec 100644
+--- a/tests/helpers.bash
++++ b/tests/helpers.bash
+@@ -433,9 +433,9 @@ function skip_if_rootless() {
+ ##################################
+ function skip_if_rootless_and_cgroupv1() {
+     if test "$BUILDAH_ISOLATION" = "rootless"; then
+-	if !is_cgroupsv2; then
+-		skip "${1:-test does not work when \$BUILDAH_ISOLATION = rootless} and not cgroupv2"
+-	fi
++        if ! is_cgroupsv2; then
++            skip "${1:-test does not work when \$BUILDAH_ISOLATION = rootless} and not cgroupv2"
++        fi
+     fi
+ }
+ 
+@@ -471,7 +471,7 @@ function skip_if_cgroupsv2() {
+ #  skip_if_cgroupsv1  #  Some tests don't work with cgroupsv1
+ #######################
+ function skip_if_cgroupsv1() {
+-    if !is_cgroupsv2; then
++    if ! is_cgroupsv2; then
+         skip "${1:-test does not work with cgroups v1}"
+     fi
+ }
diff --git a/SPECS/buildah.spec b/SPECS/buildah.spec
new file mode 100644
index 0000000..5a10eeb
--- /dev/null
+++ b/SPECS/buildah.spec
@@ -0,0 +1,2504 @@
+# https://bugzilla.redhat.com/show_bug.cgi?id=1904567
+%global _lto_cflags %{nil}
+
+%global _find_debuginfo_dwz_opts %{nil}
+%global _dwz_low_mem_die_limit 0
+
+%if 0%{?rhel} > 7 && ! 0%{?fedora}
+%define gobuild(o:) \
+go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
+%else
+%if ! 0%{?gobuild:1}
+%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v %{?**};
+%endif
+%endif
+
+%global import_path github.com/containers/buildah
+%global branch release-1.24
+%global commit0 7b559a3e7cff23f2207a36140178174d6e130a56
+%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
+
+Epoch: 1
+Name: buildah
+Version: 1.24.2
+Release: 4%{?dist}
+Summary: A command line tool used for creating OCI Images
+License: ASL 2.0
+URL: https://%{name}.io
+# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
+ExclusiveArch: %{go_arches}
+%if 0%{?branch:1}
+Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
+%else
+Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
+%endif
+Patch0: fix-bash-syntax.patch
+BuildRequires: golang >= 1.16.6
+BuildRequires: git
+BuildRequires: glib2-devel
+BuildRequires: libseccomp-devel
+BuildRequires: ostree-devel
+BuildRequires: glibc-static
+BuildRequires: go-md2man
+BuildRequires: gpgme-devel
+BuildRequires: device-mapper-devel
+BuildRequires: libassuan-devel
+BuildRequires: make
+Requires: runc >= 1.0.0-26
+Requires: containers-common >= 2:1-2
+Recommends: container-selinux
+Requires: slirp4netns >= 0.3-0
+
+%description
+The %{name} package provides a command line tool which can be used to
+* create a working container from scratch
+or
+* create a working container from an image as a starting point
+* mount/umount a working container's root file system for manipulation
+* save container's root file system layer to create a new image
+* delete a working container or an image
+
+%package tests
+Summary: Tests for %{name}
+Requires: %{name} = %{epoch}:%{version}-%{release}
+Requires: bzip2
+Requires: podman
+Requires: golang
+Requires: jq
+Requires: httpd-tools
+Requires: openssl
+Requires: nmap-ncat
+
+%description tests
+%{summary}
+
+This package contains system tests for %{name}
+
+%prep
+%if 0%{?branch:1}
+%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
+%else
+%autosetup -Sgit -n %{name}-%{commit0}
+%endif
+sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
+sed -i '/docs install/d' Makefile
+
+%build
+mkdir _build
+pushd _build
+mkdir -p src/github.com/containers
+ln -s $(dirs +1 -l) src/%{import_path}
+popd
+
+mv vendor src
+
+export GOPATH=$(pwd)/_build:$(pwd)
+export BUILDTAGS='seccomp selinux btrfs_noversion exclude_graphdriver_btrfs'
+export GO111MODULE=off
+export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
+export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'`
+export LDFLAGS="$LDFLAGS -X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
+rm -f src/github.com/containers/storage/drivers/register/register_btrfs.go
+%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
+%gobuild -o imgtype %{import_path}/tests/imgtype
+%gobuild -o bin/copy %{import_path}/tests/copy
+GOMD2MAN=go-md2man %{__make} -C docs
+
+%install
+export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
+make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
+install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
+cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
+cp imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
+cp bin/copy %{buildroot}/%{_bindir}/%{name}-copy
+make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
+
+#define license tag if not already defined
+%{!?_licensedir:%global license %doc}
+
+%files
+%license LICENSE
+%doc README.md
+%{_bindir}/%{name}
+%{_mandir}/man[15]/*
+%dir %{_datadir}/bash-completion
+%dir %{_datadir}/bash-completion/completions
+%{_datadir}/bash-completion/completions/%{name}
+
+%files tests
+%license LICENSE
+%{_bindir}/%{name}-imgtype
+%{_bindir}/%{name}-copy
+%{_datadir}/%{name}/test
+
+%changelog
+* Fri Mar 25 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-4
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.24
+  (https://github.com/containers/buildah/commit/7b559a3)
+- Related: #2067533
+
+* Fri Mar 25 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-3
+- switch to RHEL maintenance branch which fixes CVE-2022-27651
+- Resolves: #2067533
+
+* Mon Feb 21 2022 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.24.2-2
+- Add patch to fix bash symtax for gating tests
+- Upstream PR: https://github.com/containers/buildah/pull/3792
+- Related: #2000051
+
+* Thu Feb 17 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-1
+- update to https://github.com/containers/buildah/releases/tag/v1.24.2
+- Related: #2000051
+
+* Fri Feb 04 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.1-1
+- update to https://github.com/containers/buildah/releases/tag/v1.24.1
+- Related: #2000051
+
+* Thu Jan 27 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-1
+- update to https://github.com/containers/buildah/releases/tag/v1.24.0
+- Related: #2000051
+
+* Tue Jan 25 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.52
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/718f2b4)
+- Related: #2000051
+
+* Mon Jan 24 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.51
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/2189882)
+- Related: #2000051
+
+* Thu Jan 20 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.50
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/4b3aaee)
+- Related: #2000051
+
+* Wed Jan 19 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.49
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/da00c99)
+- Related: #2000051
+
+* Mon Jan 17 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.48
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/7bcca21)
+- Related: #2000051
+
+* Thu Jan 13 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.47
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/60880a7)
+- Related: #2000051
+
+* Wed Jan 12 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.46
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/031e72c)
+- Related: #2000051
+
+* Tue Jan 11 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.45
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/b3798a1)
+- Related: #2000051
+
+* Mon Jan 10 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.44
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/4b22fc5)
+- Related: #2000051
+
+* Thu Jan 06 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.43
+- add required test files
+- Related: #2000051
+
+* Thu Jan 06 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.42
+- basically, bring in from RHEL8 container-tools module,
+  remove podman & skopeo, and bang at it until it works. (Ed Santiago)
+- Related: #2000051
+
+* Mon Jan 03 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.41
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/9591a8d)
+- Related: #2000051
+
+* Wed Dec 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.40
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/0bd4dd1)
+- Related: #2000051
+
+* Tue Dec 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.39
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/c5ef5c0)
+- Related: #2000051
+
+* Mon Dec 20 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.38
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/c7e45ed)
+- Related: #2000051
+
+* Mon Dec 13 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.37
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/1f1b960)
+- Related: #2000051
+
+* Mon Dec 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.36
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/de86fab)
+- Related: #2000051
+
+* Wed Dec 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.35
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/6d01253)
+- Related: #2000051
+
+* Tue Nov 30 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.34
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/2711b85)
+- Related: #2000051
+
+* Thu Nov 25 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.33
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/dc7625a)
+- Related: #2000051
+
+* Wed Nov 24 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.32
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/8b79d8b)
+- Related: #2000051
+
+* Tue Nov 23 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.31
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/b768318)
+- Related: #2000051
+
+* Mon Nov 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.30
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/78a1d08)
+- Related: #2000051
+
+* Fri Nov 12 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.29
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/68cd602)
+- Related: #2000051
+
+* Tue Nov 09 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.28
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/50ebc90)
+- Related: #2000051
+
+* Fri Nov 05 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.27
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/e3283ab)
+- Related: #2000051
+
+* Thu Nov 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.26
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/96e1871)
+- Related: #2000051
+
+* Mon Nov 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.25
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/ecd7474)
+- Related: #2000051
+
+* Fri Oct 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.24
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/a381063)
+- Related: #2000051
+
+* Wed Oct 27 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.23
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/f36d1f2)
+- Related: #2000051
+
+* Mon Oct 25 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.22
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/639320e)
+- Related: #2000051
+
+* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.21
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/762cf6f)
+- Related: #2000051
+
+* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.20
+- respect Epoch in subpackage dependencies
+- Related: #2000051
+
+* Fri Oct 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-0.19
+- bump Epoch to preserve upgrade path
+- Related: #2000051
+
+* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.18
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/982717a)
+- Related: #2000051
+
+* Mon Oct 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.17
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/e47f4a1)
+- Related: #2000051
+
+* Fri Oct 08 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.16
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/211972a)
+- Related: #2000051
+
+* Thu Oct 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.15
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/c044ad6)
+- Related: #2000051
+
+* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.14
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/7807a0e)
+- Related: #2000051
+
+* Mon Oct 04 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.13
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/0cd9445)
+- Related: #2000051
+
+* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.12
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/954c481)
+- Related: #2000051
+
+* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.11
+- include all man pages
+- Related: #2000051
+
+* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.10
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/d2ef199)
+- Related: #2000051
+
+* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.9
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/455f2f1)
+- Related: #2000051
+
+* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.8
+- add gating.yaml
+- Related: #2000051
+
+* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.7
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/5b0de7b)
+- Related: #2000051
+
+* Fri Sep 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.6
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/9a49348)
+- Related: #2000051
+
+* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.5
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/a72aad4)
+- Related: #2000051
+
+* Wed Sep 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.4
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/b8757e9)
+- Related: #2000051
+
+* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.3
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/4c287d1)
+- Related: #2000051
+
+* Fri Sep 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.2
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/753716a)
+- Related: #2000051
+
+* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.1
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/69b3e56)
+- Related: #2000051
+
+* Tue Sep 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.3
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/8657d7e)
+- Related: #2000051
+
+* Mon Sep 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.2
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/0346b38)
+- Related: #2000051
+
+* Thu Sep 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.1
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/a5aba5c)
+- Related: #2000051
+
+* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.3-1
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
+  (https://github.com/containers/buildah/commit/4d20222)
+- Related: #2000051
+
+* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.22.0-3
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+  Related: rhbz#1991688
+
+* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-2
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
+  (https://github.com/containers/buildah/commit/71b8003)
+- Related: #1970747
+
+* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-1
+- update to 1.22.0 release and switch to the release-1.22 maint branch
+- Related: #1970747
+
+* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/56ff12f)
+- Related: #1970747
+
+* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/f517d85)
+- Related: #1970747
+
+* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/42dbc97)
+- Related: #1970747
+
+* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.1
+- switch to main branch
+- Related: #1970747
+
+* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-2
+- add buildah-copy helper
+- Related: #1970747
+
+* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-1
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
+  (https://github.com/containers/buildah/commit/9c83683)
+- Related: #1970747
+
+* Tue Jul 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-2
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
+  (https://github.com/containers/buildah/commit/30a10f3)
+- Related: #1970747
+
+* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-1
+- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
+  (https://github.com/containers/buildah/commit/7f9540d)
+- Related: #1970747
+
+* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-1
+- update to buildah 1.21.1 from the release-1.21 upstream branch
+- Related: #1970747
+
+* Wed Jun 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.17
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/ecfcde2)
+- Related: #1970747
+
+* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.16
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/3ed5d8e)
+- Related: #1970747
+
+* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.15
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/c7d828f)
+- Related: #1970747
+
+* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.14
+- "buildah version" produces correct output
+- Related: #1970747
+
+* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.13
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/6bc611d)
+- Related: #1970747
+
+* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.12
+- update to the latest content of https://github.com/containers/buildah/tree/main
+  (https://github.com/containers/buildah/commit/3a0b52f)
+- Related: #1970747
+
+* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.11
+- switch master -> main
+- Related: #1970747
+
+* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.10
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/6d5d1ae)
+- Related: #1970747
+
+* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1.22.0-0.9
+- Rebuilt for RHEL 9 BETA for openssl 3.0
+  Related: rhbz#1971065
+
+* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.8
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/802a904)
+- Related: #1970747
+
+* Mon Jun 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.7
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/5181b9c)
+- Related: #1970747
+
+* Fri Jun 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.6
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/814868e)
+- Related: #1970747
+
+* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.5
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/30c07b7)
+- Related: #1970747
+
+* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/d99221f)
+- Related: #1970747
+
+* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
+- update to the latest content of https://github.com/containers/buildah/tree/master
+  (https://github.com/containers/buildah/commit/8d08247)
+- Related: #1970747
+
+* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
+- update buildah
+- Related: #1970747
+
+* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.20.0-2
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.0-1
+- update to https://github.com/containers/buildah/releases/tag/v1.20.0
+
+* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.8-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.8
+
+* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.7-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.7
+
+* Mon Feb 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-2
+- disable LTO to allow the build to pass successfully
+
+* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.6
+
+* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.4-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.4
+
+* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.3
+
+* Wed Jan 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.2
+
+* Thu Jan 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
+- fix gating test issue with openssl cert
+- Related: #1914884
+
+* Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
+- update to https://github.com/containers/buildah/releases/tag/v1.19.0
+
+* Sat Dec 05 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-3
+- remove any LTO CFLAGS to avoid build failure
+- Related: #1904567
+
+* Fri Dec 04 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-2
+- do not harden binaries for now given bug in golang, e.g.
+  error: variable '_cgoexp_ebd00b0772db_StorageDevmapperLogCallback' redeclared as function
+- make build log more readable
+
+* Mon Nov 23 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-1
+- update to https://github.com/containers/buildah/releases/tag/v1.18.0
+
+* Fri Sep 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.23.dev.gitb3f6ed8
+- autobuilt b3f6ed8
+
+* Mon Sep 21 23:12:37 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.22.dev.git0e06e45
+- autobuilt 0e06e45
+
+* Mon Sep 21 22:12:43 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.21.dev.gitf2f857a
+- autobuilt f2f857a
+
+* Mon Sep 21 21:12:08 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.20.dev.git0f4a259
+- autobuilt 0f4a259
+
+* Mon Sep 21 20:13:18 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.19.dev.gitd273b9e
+- autobuilt d273b9e
+
+* Mon Sep 21 18:12:11 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.18.dev.git411a885
+- autobuilt 411a885
+
+* Mon Sep 21 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.17.0-0.17.dev.git678da1d
+- adjust centos deps
+
+* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.16.dev.git678da1d
+- autobuilt 678da1d
+
+* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.15.dev.git58541a3
+- autobuilt 58541a3
+
+* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.14.dev.git17bb22f
+- autobuilt 17bb22f
+
+* Wed Sep 16  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.13.dev.git552cbd3
+- autobuilt 552cbd3
+
+* Tue Sep 15  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.12.dev.gitd0f43a0
+- autobuilt d0f43a0
+
+* Tue Sep 15  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.11.dev.gitb47ffb9
+- autobuilt b47ffb9
+
+* Fri Sep 11  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.10.dev.git1f8bf4d
+- autobuilt 1f8bf4d
+
+* Thu Sep 10  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.9.dev.git33768fc
+- autobuilt 33768fc
+
+* Wed Sep  9  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.8.dev.gitaa3128e
+- autobuilt aa3128e
+
+* Wed Sep  9  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.7.dev.gitefc5ec2
+- autobuilt efc5ec2
+
+* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.6.dev.gitbfe6da5
+- autobuilt bfe6da5
+
+* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.5.dev.git2928303
+- autobuilt 2928303
+
+* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.4.dev.git555eb26
+- autobuilt 555eb26
+
+* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.3.dev.git49a5768
+- autobuilt 49a5768
+
+* Mon Sep  7  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.2.dev.gitd83657c
+- autobuilt d83657c
+
+* Sat Sep  5  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.1.dev.git28d7d44
+- bump to 1.17.0
+- autobuilt 28d7d44
+
+* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.4.dev.git58e6b4f
+- autobuilt 58e6b4f
+
+* Thu Sep 03 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.16.0-0.3.dev.gitfce9668
+- tests package requires openssl
+
+* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.2.dev.gitfce9668
+- autobuilt fce9668
+
+* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.1.dev.gitac0182c
+- bump to 1.16.0
+- autobuilt ac0182c
+
+* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-0.68.dev.git2c46b4b
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Tue May 26 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.67.dev.git2c46b4b
+- update deps for centos
+
+* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.66.dev.git2c46b4b
+- autobuilt 2c46b4b
+
+* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.65.dev.gitf7a3515
+- autobuilt f7a3515
+
+* Mon May 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.64.dev.git0ac2a67
+- autobuilt 0ac2a67
+
+* Sun May 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.63.dev.gitdbf0777
+- autobuilt dbf0777
+
+* Sat May 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.62.dev.gitde0f541
+- autobuilt de0f541
+
+* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.61.dev.git75e94a2
+- autobuilt 75e94a2
+
+* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.60.dev.gitab1adf1
+- autobuilt ab1adf1
+
+* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.59.dev.git4fc49ce
+- autobuilt 4fc49ce
+
+* Mon May 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.58.dev.git7957c13
+- autobuilt 7957c13
+
+* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.57.dev.git9bd70ac
+- autobuilt 9bd70ac
+
+* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.56.dev.git3184920
+- autobuilt 3184920
+
+* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.55.dev.git0f6c2a9
+- autobuilt 0f6c2a9
+
+* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.54.dev.gitf80da42
+- autobuilt f80da42
+
+* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.53.dev.git6a7ace0
+- autobuilt 6a7ace0
+
+* Tue May 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.52.dev.gitb438050
+- autobuilt b438050
+
+* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.51.dev.git828035f
+- autobuilt 828035f
+
+* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.50.dev.git7610123
+- autobuilt 7610123
+
+* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.49.dev.git7b0dfb8
+- autobuilt 7b0dfb8
+
+* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.48.dev.gitf35e7d4
+- autobuilt f35e7d4
+
+* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.47.dev.git42a48f9
+- autobuilt 42a48f9
+
+* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.46.dev.git63567cb
+- autobuilt 63567cb
+
+* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.45.dev.git3af27b4
+- autobuilt 3af27b4
+
+* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.44.dev.git8169acd
+- autobuilt 8169acd
+
+* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.43.dev.gitbea8692
+- autobuilt bea8692
+
+* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.42.dev.git0b9a534
+- autobuilt 0b9a534
+
+* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.41.dev.git0d5ab1d
+- autobuilt 0d5ab1d
+
+* Thu Apr 23 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.40.dev.gitf4970e6
+- use latest commit
+
+* Thu Apr 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.39.dev.git843d15d
+- autobuilt 843d15d
+
+* Mon Apr 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.38.dev.gitf4970e6
+- autobuilt f4970e6
+
+* Thu Apr 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.37.dev.git81e2659
+- autobuilt 81e2659
+
+* Tue Apr 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.36.dev.gitdb3ced9
+- autobuilt db3ced9
+
+* Mon Apr 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.35.dev.gitc404c89
+- autobuilt c404c89
+
+* Mon Apr 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.34.dev.git7a88d7e
+- autobuilt 7a88d7e
+
+* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.33.dev.gitf7ff4c1
+- autobuilt f7ff4c1
+
+* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.32.dev.gite48fa75
+- autobuilt e48fa75
+
+* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.31.dev.gitc554675
+- autobuilt c554675
+
+* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.30.dev.gitf5dbfc1
+- autobuilt f5dbfc1
+
+* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.29.dev.git310c02b
+- autobuilt 310c02b
+
+* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.28.dev.gitc3070ba
+- autobuilt c3070ba
+
+* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.27.dev.git20e41b7
+- autobuilt 20e41b7
+
+* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.26.dev.git9c031e0
+- autobuilt 9c031e0
+
+* Sat Apr 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.25.dev.git31a01b4
+- autobuilt 31a01b4
+
+* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.24.dev.gite9a6703
+- autobuilt e9a6703
+
+* Wed Apr 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.23.dev.git2fc064e
+- autobuilt 2fc064e
+
+* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.22.dev.git912ca5a
+- autobuilt 912ca5a
+
+* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.21.dev.git25c294c
+- autobuilt 25c294c
+
+* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.20.dev.git1db2cde
+- autobuilt 1db2cde
+
+* Sat Mar 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.19.dev.git17ceb60
+- autobuilt 17ceb60
+
+* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.18.dev.gitc18e043
+- autobuilt c18e043
+
+* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.17.dev.gitd3804fa
+- autobuilt d3804fa
+
+* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.16.dev.git11ad04e
+- autobuilt 11ad04e
+
+* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.15.dev.gite48ff81
+- autobuilt e48ff81
+
+* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.14.dev.gite54da62
+- autobuilt e54da62
+
+* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.13.dev.gita5fabab
+- autobuilt a5fabab
+
+* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.12.dev.gitc61925b
+- autobuilt c61925b
+
+* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.11.dev.gitaba0d4d
+- autobuilt aba0d4d
+
+* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.10.dev.git3b9c6a3
+- autobuilt 3b9c6a3
+
+* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.9.dev.git10542ed
+- autobuilt 10542ed
+
+* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.8.dev.git665dc2f
+- autobuilt 665dc2f
+
+* Thu Mar 19 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.7.dev.git843d15d
+- use correct commit
+
+* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.6.dev.gitf1cf92b
+- autobuilt 843d15d
+
+* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.5.dev.gitf1cf92b
+- autobuilt a2285ed
+
+* Wed Mar 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.4.dev.gitf1cf92b
+- autobuilt a2285ed
+
+* Wed Mar 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.3.dev.gitf1cf92b
+- autobuilt a2285ed
+
+* Tue Mar 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.2.dev.gitf1cf92b
+- autobuilt 040fb4b
+
+* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.1.dev.gitf1cf92b
+- bump to 1.15.0
+- autobuilt d26f437
+
+* Wed Feb 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.35.dev.gitf1cf92b
+- autobuilt f1cf92b
+
+* Sat Feb 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.34.dev.gitf89b081
+- autobuilt f89b081
+
+* Fri Jan 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.33.dev.git3177db5
+- autobuilt 3177db5
+
+* Thu Jan 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.32.dev.git4131dfa
+- autobuilt 4131dfa
+
+* Wed Jan 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.31.dev.git82ff48a
+- autobuilt 82ff48a
+
+* Tue Jan 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.30.dev.git0a063c4
+- autobuilt 0a063c4
+
+* Mon Jan 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.29.dev.gitec4bbe6
+- autobuilt ec4bbe6
+
+* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.28.dev.git6e277a2
+- autobuilt 6e277a2
+
+* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.27.dev.git6417a9a
+- autobuilt 6417a9a
+
+* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.26.dev.git0c3234f
+- autobuilt 0c3234f
+
+* Sun Jan 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.25.dev.git2055fe9
+- autobuilt 2055fe9
+
+* Fri Jan 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.24.dev.gita925f79
+- autobuilt a925f79
+
+* Fri Jan 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.23.dev.gitca0819f
+- autobuilt ca0819f
+
+* Thu Jan 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.22.dev.gitc46f6e0
+- autobuilt c46f6e0
+
+* Thu Jan 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.21.dev.gitb09fdc3
+- autobuilt b09fdc3
+
+* Wed Jan 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.20.dev.git09d1c24
+- autobuilt 09d1c24
+
+* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.19.dev.gitbf14e6c
+- autobuilt bf14e6c
+
+* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.18.dev.git720e5d6
+- autobuilt 720e5d6
+
+* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.17.dev.gitb7e6731
+- autobuilt b7e6731
+
+* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.16.dev.gitf7731c2
+- autobuilt f7731c2
+
+* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.15.dev.git9def9c0
+- autobuilt 9def9c0
+
+* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.14.dev.git3af1491
+- autobuilt 3af1491
+
+* Thu Jan 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.13.dev.git4e23b7a
+- autobuilt 4e23b7a
+
+* Thu Jan 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.12.dev.git55fa8f5
+- autobuilt 55fa8f5
+
+* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.11.dev.git47ce18b
+- autobuilt 47ce18b
+
+* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.10.dev.gita3dec02
+- autobuilt a3dec02
+
+* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.9.dev.gitb555b7d
+- autobuilt b555b7d
+
+* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.8.dev.gite7be041
+- autobuilt e7be041
+
+* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.7.dev.gitdbec497
+- autobuilt dbec497
+
+* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.6.dev.git45543bf
+- autobuilt 45543bf
+
+* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.5.dev.gitd792c70
+- autobuilt d792c70
+
+* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.4.dev.git20c2a54
+- autobuilt 20c2a54
+
+* Sat Jan 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.3.dev.gitc42f440
+- autobuilt c42f440
+
+* Fri Jan 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.2.dev.git8d41b83
+- autobuilt 8d41b83
+
+* Tue Dec 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.1.dev.git726e24d
+- bump to 1.14.0
+- autobuilt 726e24d
+
+* Sun Dec 22 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.10.dev.git6941254
+- autobuilt 6941254
+
+* Sun Dec 22 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.9.dev.git41b7852
+- autobuilt 41b7852
+
+* Fri Dec 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.8.dev.git9588a82
+- autobuilt 9588a82
+
+* Thu Dec 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.7.dev.gite6815a1
+- autobuilt e6815a1
+
+* Thu Dec 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.6.dev.git2959a6b
+- autobuilt 2959a6b
+
+* Wed Dec 18 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.5.dev.git188269a
+- autobuilt 188269a
+
+* Wed Dec 18 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.4.dev.git0662a4e
+- autobuilt 0662a4e
+
+* Tue Dec 17 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.3.dev.gitacc7c35
+- autobuilt acc7c35
+
+* Mon Dec 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.2.dev.git068b6f5
+- autobuilt 068b6f5
+
+* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.1.dev.gite28c43d
+- bump to 1.13.0
+- autobuilt e28c43d
+
+* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.88.dev.gitdb59421
+- autobuilt db59421
+
+* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.87.dev.git70b101f
+- autobuilt 70b101f
+
+* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.86.dev.gitbc8feee
+- autobuilt bc8feee
+
+* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.85.dev.git8d6869b
+- autobuilt 8d6869b
+
+* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.84.dev.git8fc5b01
+- autobuilt 8fc5b01
+
+* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.83.dev.gitc038827
+- autobuilt c038827
+
+* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.82.dev.gite47145c
+- autobuilt e47145c
+
+* Thu Dec 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.81.dev.git2a82d07
+- autobuilt 2a82d07
+
+* Wed Dec 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.80.dev.git357d4ae
+- autobuilt 357d4ae
+
+* Wed Dec 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.79.dev.gitd55a9f8
+- autobuilt d55a9f8
+
+* Tue Dec 03 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.78.dev.gited0a329
+- autobuilt ed0a329
+
+* Mon Nov 25 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.77.dev.git4cf37c2
+- autobuilt 4cf37c2
+
+* Sat Nov 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.76.dev.git8fd3148
+- autobuilt 8fd3148
+
+* Thu Nov 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.75.dev.git92ff215
+- autobuilt 92ff215
+
+* Wed Nov 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.74.dev.gitcd88667
+- autobuilt cd88667
+
+* Wed Nov 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.73.dev.git1e6a70c
+- autobuilt 1e6a70c
+
+* Tue Nov 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.72.dev.git6a555a0
+- autobuilt 6a555a0
+
+* Sat Nov 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.71.dev.git9ff68b3
+- autobuilt 9ff68b3
+
+* Wed Nov 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.70.dev.gitc5244fe
+- autobuilt c5244fe
+
+* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.69.dev.git985e8dc
+- autobuilt 985e8dc
+
+* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.68.dev.git85ab067
+- autobuilt 85ab067
+
+* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.67.dev.git7535655
+- autobuilt 7535655
+
+* Fri Nov 08 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.66.dev.gite3bb278
+- autobuilt e3bb278
+
+* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.65.dev.gita880001
+- autobuilt a880001
+
+* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.64.dev.gitf995696
+- autobuilt f995696
+
+* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.63.dev.git147d106
+- autobuilt 147d106
+
+* Wed Nov 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.62.dev.git89bc2a6
+- autobuilt 89bc2a6
+
+* Wed Nov 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.61.dev.gitec970d5
+- autobuilt ec970d5
+
+* Tue Nov 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.60.dev.gitfba62fd
+- autobuilt fba62fd
+
+* Fri Nov 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.59.dev.git1967973
+- autobuilt 1967973
+
+* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.58.dev.git20e92ff
+- autobuilt 20e92ff
+
+* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.57.dev.git141b5a1
+- autobuilt 141b5a1
+
+* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.56.dev.git332a889
+- autobuilt 332a889
+
+* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.55.dev.git8e26456
+- autobuilt 8e26456
+
+* Wed Oct 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.54.dev.git1ff7043
+- autobuilt 1ff7043
+
+* Wed Oct 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.53.dev.giteaad6b4
+- autobuilt eaad6b4
+
+* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.52.dev.git999fa43
+- autobuilt 999fa43
+
+* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.51.dev.git751f92e
+- autobuilt 751f92e
+
+* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.50.dev.gitb023cde
+- autobuilt b023cde
+
+* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.49.dev.git66701d4
+- autobuilt 66701d4
+
+* Mon Oct 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.48.dev.gitc2dc46a
+- autobuilt c2dc46a
+
+* Mon Oct 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.47.dev.git691c394
+- autobuilt 691c394
+
+* Fri Oct 25 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.46.dev.gitcddb66e
+- autobuilt cddb66e
+
+* Wed Oct 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.45.dev.gitfa4eec7
+- autobuilt fa4eec7
+
+* Mon Oct 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.44.dev.git049fdf4
+- autobuilt 049fdf4
+
+* Mon Oct 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.43.dev.git1d3db17
+- autobuilt 1d3db17
+
+* Sun Oct 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.42.dev.git120c37f
+- autobuilt 120c37f
+
+* Wed Oct 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.41.dev.git0f7148b
+- autobuilt 0f7148b
+
+* Wed Oct 16 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.12.0-0.40.dev.git389d49b
+- install imgtype binary
+
+* Tue Oct 15 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.39.dev.git389d49b
+- autobuilt 389d49b
+
+* Fri Oct 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.38.dev.gitd6f11ba
+- autobuilt d6f11ba
+
+* Fri Oct 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.37.dev.git68b2aa5
+- autobuilt 68b2aa5
+
+* Wed Oct 09 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.36.dev.git13330a4
+- autobuilt 13330a4
+
+* Fri Oct 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.35.dev.git7a7e1f0
+- autobuilt 7a7e1f0
+
+* Fri Oct 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.34.dev.git797e618
+- autobuilt 797e618
+
+* Thu Oct 03 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.33.dev.gitb298906
+- autobuilt b298906
+
+* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.32.dev.gitf50b55d
+- autobuilt f50b55d
+
+* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.31.dev.gite400691
+- autobuilt e400691
+
+* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.30.dev.git96f9993
+- autobuilt 96f9993
+
+* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.29.dev.gitc771c56
+- autobuilt c771c56
+
+* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.28.dev.gite2c33f3
+- autobuilt e2c33f3
+
+* Tue Oct 01 2019 Debarshi Ray <rishi@fedoraproject.org> - 1.12.0-0.27.dev.gitcf933c8
+- Require crun >= 0.10-1
+
+* Tue Oct 01 2019 Debarshi Ray <rishi@fedoraproject.org> - 1.12.0-0.26.dev.gitcf933c8
+- Switch to crun for Cgroups v2 support
+
+* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.25.dev.gitcf933c8
+- autobuilt cf933c8
+
+* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.24.dev.gitbf04bf1
+- autobuilt bf04bf1
+
+* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.23.dev.gitfc06a4d
+- autobuilt fc06a4d
+
+* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.22.dev.gitd3d9cec
+- autobuilt d3d9cec
+
+* Mon Sep 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.21.dev.gita32fc96
+- autobuilt a32fc96
+
+* Sat Sep 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.20.dev.git61e32a5
+- autobuilt 61e32a5
+
+* Sat Sep 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.19.dev.gitc3b1ec6
+- autobuilt c3b1ec6
+
+* Wed Sep 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.18.dev.git04150e0
+- autobuilt 04150e0
+
+* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.17.dev.gitd2c1fd8
+- autobuilt d2c1fd8
+
+* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.16.dev.git6abc01c
+- autobuilt 6abc01c
+
+* Mon Sep 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.15.dev.gite9969bc
+- autobuilt e9969bc
+
+* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.14.dev.git10b0e7a
+- autobuilt 10b0e7a
+
+* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.13.dev.git4ce6fba
+- autobuilt 4ce6fba
+
+* Thu Sep 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.12.dev.git9cac447
+- autobuilt 9cac447
+
+* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.11.dev.git20a33e0
+- autobuilt 20a33e0
+
+* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.10.dev.git9bf6b5e
+- autobuilt 9bf6b5e
+
+* Fri Sep 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.9.dev.gitf54c965
+- autobuilt f54c965
+
+* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.8.dev.git3f6ad0f
+- autobuilt 3f6ad0f
+
+* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.7.dev.git9f2a682
+- autobuilt 9f2a682
+
+* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.6.dev.git4da1d5d
+- autobuilt 4da1d5d
+
+* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.5.dev.git34f1ae6
+- autobuilt 34f1ae6
+
+* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.4.dev.gitcc80ccc
+- autobuilt cc80ccc
+
+* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.3.dev.gitb643073
+- autobuilt b643073
+
+* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.2.dev.git15773bd
+- autobuilt 15773bd
+
+* Sat Aug 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.1.dev.git1a1a728
+- bump to 1.12.0
+- autobuilt 1a1a728
+
+* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.38.dev.git57db70c
+- autobuilt 57db70c
+
+* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.37.dev.gite930951
+- autobuilt e930951
+
+* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.36.dev.gitecf5b72
+- autobuilt ecf5b72
+
+* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.35.dev.git5671417
+- autobuilt 5671417
+
+* Wed Aug 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.34.dev.git689f8ed
+- autobuilt 689f8ed
+
+* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.33.dev.git6b5f8ba
+- autobuilt 6b5f8ba
+
+* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.32.dev.gitff72568
+- autobuilt ff72568
+
+* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.31.dev.git376e52e
+- autobuilt 376e52e
+
+* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.30.dev.git5a1c733
+- autobuilt 5a1c733
+
+* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.29.dev.git3ad937b
+- autobuilt 3ad937b
+
+* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.28.dev.gitfa68ed6
+- autobuilt fa68ed6
+
+* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.27.dev.gitb288b7a
+- autobuilt b288b7a
+
+* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.26.dev.gitc1a2d4f
+- autobuilt c1a2d4f
+
+* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.25.dev.git51415ec
+- autobuilt 51415ec
+
+* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.24.dev.gitc2c52ba
+- autobuilt c2c52ba
+
+* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.23.dev.gitebf6f51
+- autobuilt ebf6f51
+
+* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.22.dev.git36dcedb
+- autobuilt 36dcedb
+
+* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.21.dev.gitab0286f
+- autobuilt ab0286f
+
+* Thu Aug 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.20.dev.git1ce1130
+- autobuilt 1ce1130
+
+* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.19.dev.gitd88c26b
+- autobuilt d88c26b
+
+* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.18.dev.git5c98d3c
+- autobuilt 5c98d3c
+
+* Tue Aug 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.17.dev.git3f5436f
+- autobuilt 3f5436f
+
+* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.16.dev.gita99139c
+- autobuilt a99139c
+
+* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.15.dev.git2df08f0
+- autobuilt 2df08f0
+
+* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.14.dev.git96a136e
+- autobuilt 96a136e
+
+* Sun Aug 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.13.dev.git7180312
+- autobuilt 7180312
+
+* Sat Aug 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.12.dev.git0dfb6f5
+- autobuilt 0dfb6f5
+
+* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.11.dev.git60d5480
+- autobuilt 60d5480
+
+* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.10.dev.git60c0088
+- autobuilt 60c0088
+
+* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.9.dev.gitc953216
+- autobuilt c953216
+
+* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.8.dev.gitf892eb6
+- autobuilt f892eb6
+
+* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.7.dev.git95cb061
+- autobuilt 95cb061
+
+* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.6.dev.gitf4cfe9c
+- autobuilt f4cfe9c
+
+* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.5.dev.git03aa807
+- autobuilt 03aa807
+
+* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.4.dev.gitbafcf88
+- autobuilt bafcf88
+
+* Tue Aug 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.3.dev.git232f7c6
+- autobuilt 232f7c6
+
+* Mon Aug 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.2.dev.git1de958d
+- autobuilt 1de958d
+
+* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.1.dev.gitac5031d
+- bump to 1.11.0
+- autobuilt ac5031d
+
+* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.68.dev.git3117f5e
+- autobuilt 3117f5e
+
+* Thu Aug 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.67.dev.git4d017d6
+- autobuilt 4d017d6
+
+* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.66.dev.gitc00f548
+- autobuilt c00f548
+
+* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.65.dev.git677b771
+- autobuilt 677b771
+
+* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.64.dev.gitb7a0ed0
+- autobuilt b7a0ed0
+
+* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.63.dev.git5bab9b0
+- autobuilt 5bab9b0
+
+* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.62.dev.git4ccb343
+- autobuilt 4ccb343
+
+* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.61.dev.gita74bdd3
+- autobuilt a74bdd3
+
+* Sat Jul 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.60.dev.git6b214d2
+- autobuilt 6b214d2
+
+* Fri Jul 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.59.dev.git73401a4
+- autobuilt 73401a4
+
+* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-0.58.dev.git6bd0551
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Tue Jul 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.57.dev.git6bd0551
+- autobuilt 6bd0551
+
+* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.56.dev.git555b5a5
+- autobuilt 555b5a5
+
+* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.55.dev.git2110f05
+- bump to 1.9.3
+- autobuilt 2110f05
+
+* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.54.dev.gitd7dec37
+- autobuilt d7dec37
+
+* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.53.dev.git5da3c8c
+- autobuilt 5da3c8c
+
+* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.52.dev.git4ae0e14
+- autobuilt 4ae0e14
+
+* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.51.dev.git8da4cb4
+- autobuilt 8da4cb4
+
+* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.50.dev.gitbe51b9b
+- autobuilt be51b9b
+
+* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.49.dev.gitb33b87b
+- autobuilt b33b87b
+
+* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.48.dev.git16e3010
+- autobuilt 16e3010
+
+* Tue Jul 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.47.dev.gitbb5cbf1
+- autobuilt bb5cbf1
+
+* Tue Jul 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.46.dev.git2249ba3
+- autobuilt 2249ba3
+
+* Sun Jul 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.45.dev.gitd419737
+- bump to 1.9.2
+- autobuilt d419737
+
+* Wed Jul 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.44.dev.git5d723ff
+- autobuilt 5d723ff
+
+* Sun Jul 07 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-0.43.dev.gite160a63
+- built e160a63
+- add centos conditionals
+- use new name for go-md2man dep
+
+* Sat Jun 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.42.dev.git1d11851
+- autobuilt 1d11851
+
+* Fri Jun 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.41.dev.git07aaf5e
+- autobuilt 07aaf5e
+
+* Thu Jun 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.40.dev.gitc22957b
+- autobuilt c22957b
+
+* Tue Jun 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.39.dev.git2c4f388
+- autobuilt 2c4f388
+
+* Sun Jun 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.38.dev.git0b84b23
+- bump to 1.9.1
+- autobuilt 0b84b23
+
+* Sat Jun 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.37.dev.git77fa9dd
+- autobuilt 77fa9dd
+
+* Fri Jun 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.36.dev.gitdc7b50c
+- autobuilt dc7b50c
+
+* Thu Jun 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.35.dev.git2191ba6
+- autobuilt 2191ba6
+
+* Wed Jun 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.34.dev.gitdcbf193
+- autobuilt dcbf193
+
+* Tue Jun 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.33.dev.git78dcf2f
+- autobuilt 78dcf2f
+
+* Mon Jun 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.32.dev.git4ae0a69
+- autobuilt 4ae0a69
+
+* Sun Jun 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.31.dev.gitd172dd9
+- autobuilt d172dd9
+
+* Sat Jun 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.30.dev.git2da8755
+- autobuilt 2da8755
+
+* Fri Jun 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.29.dev.gitad4f235
+- autobuilt ad4f235
+
+* Thu Jun 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.28.dev.gite0306bb
+- autobuilt e0306bb
+
+* Wed Jun 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.27.dev.gitaa06a77
+- autobuilt aa06a77
+
+* Sun Jun 02 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-0.26.dev.gita086ec8
+- build for all arches
+
+* Sun Jun 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.25.dev.git7016ce6
+- autobuilt 7016ce6
+
+* Sat Jun 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.24.dev.git3104ddf
+- autobuilt 3104ddf
+
+* Fri May 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.23.dev.git53be3d3
+- autobuilt 53be3d3
+
+* Thu May 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.22.dev.git2a962f1
+- autobuilt 2a962f1
+
+* Wed May 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.21.dev.gitfa7f030
+- autobuilt fa7f030
+
+* Tue May 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.20.dev.gited77a92
+- autobuilt ed77a92
+
+* Sat May 25 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.19.dev.git8e48a65
+- autobuilt 8e48a65
+
+* Fri May 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.18.dev.git4e1ca7c
+- autobuilt 4e1ca7c
+
+* Fri May 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.17.dev.git00f5164
+- autobuilt 00f5164
+
+* Thu May 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.16.dev.gitbc9c276
+- autobuilt bc9c276
+
+* Tue May 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.15.dev.gitbcc5e51
+- autobuilt bcc5e51
+
+* Sun May 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.14.dev.git7793c51
+- autobuilt 7793c51
+
+* Sat May 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.13.dev.git3bf8547
+- autobuilt 3bf8547
+
+* Fri May 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.12.dev.git63808f9
+- autobuilt 63808f9
+
+* Thu May 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.11.dev.gitc0633e3
+- autobuilt c0633e3
+
+* Wed May 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.10.dev.git4c6b09c
+- autobuilt 4c6b09c
+
+* Tue May 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.9.dev.git7ae362b
+- autobuilt 7ae362b
+
+* Mon May 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.8.dev.git74a3195
+- autobuilt 74a3195
+
+* Sun May 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.7.dev.gitab8678a
+- autobuilt ab8678a
+
+* Sat May 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.6.dev.gitc654b18
+- autobuilt c654b18
+
+* Sat May 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.5.dev.gite9184ea
+- autobuilt e9184ea
+
+* Fri May 03 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.4.dev.git59da11d
+- autobuilt 59da11d
+
+* Thu May 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.3.dev.git78fb869
+- autobuilt 78fb869
+
+* Tue Apr 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.2.dev.git0e30da6
+- autobuilt 0e30da6
+
+* Sun Apr 28 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-0.1.dev.gitddbd805
+- bump to v1.9.0-dev
+- update release tag format for unreleased builds
+
+* Wed Apr 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-41.dev.gitbdbedfd
+- autobuilt bdbedfd
+
+* Tue Apr 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-40.dev.gitb466cbd
+- autobuilt b466cbd
+
+* Sat Apr 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-39.dev.git2f0179f
+- autobuilt 2f0179f
+
+* Fri Apr 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-38.dev.git135542e
+- autobuilt 135542e
+
+* Thu Apr 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-37.dev.gite879079
+- autobuilt e879079
+
+* Wed Apr 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-36.dev.gitd8fe400
+- autobuilt d8fe400
+
+* Mon Apr 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-35.dev.gitfcc12bd
+- autobuilt fcc12bd
+
+* Sat Apr 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-34.dev.gitd43787b
+- autobuilt d43787b
+
+* Fri Apr 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-33.dev.git316bd0a
+- autobuilt 316bd0a
+
+* Wed Apr 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-32.dev.git021d607
+- autobuilt 021d607
+
+* Tue Apr 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-31.dev.git610eb7a
+- autobuilt 610eb7a
+
+* Sun Apr 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-30.dev.git25b7c11
+- autobuilt 25b7c11
+
+* Sat Apr 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-29.dev.git29a6c81
+- autobuilt 29a6c81
+
+* Fri Apr 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-28.dev.gitac66d78
+- autobuilt ac66d78
+
+* Mon Apr 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-27.dev.git9e1967a
+- autobuilt 9e1967a
+
+* Sat Mar 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-26.dev.git13d9142
+- autobuilt 13d9142
+
+* Fri Mar 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-25.dev.gita9bd025
+- autobuilt a9bd025
+
+* Thu Mar 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-24.dev.gitc933fe4
+- autobuilt c933fe4
+
+* Wed Mar 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-23.dev.git3d74031
+- autobuilt 3d74031
+
+* Mon Mar 25 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-22.dev.git03fae01
+- autobuilt 03fae01
+
+* Sat Mar 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-21.dev.gitd1c75ea
+- autobuilt d1c75ea
+
+* Fri Mar 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-20.dev.gitc6ae5c5
+- autobuilt c6ae5c5
+
+* Thu Mar 21 2019 Dan Walsh <dwalsh@redhat.com> - 1.8-19.dev.gitbe0c8d2
+- Complile with SELinux enabled
+
+* Thu Mar 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-18.dev.gitbe0c8d2
+- autobuilt be0c8d2
+
+* Wed Mar 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-17.dev.git9d6da3a
+- autobuilt 9d6da3a
+
+* Tue Mar 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-16.dev.git1ba9201
+- autobuilt 1ba9201
+
+* Sat Mar 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-15.dev.gita986f34
+- autobuilt a986f34
+
+* Fri Mar 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-14.dev.gitc691d09
+- autobuilt c691d09
+
+* Thu Mar 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-13.dev.git3b497ff
+- autobuilt 3b497ff
+
+* Wed Mar 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-12.dev.git3ba8822
+- autobuilt 3ba8822
+
+* Sun Mar 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-11.dev.git36605c2
+- autobuilt 36605c2
+
+* Sat Mar 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-10.dev.git984ea9b
+- autobuilt 984ea9b
+
+* Thu Mar 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-9.dev.git0a8ec97
+- autobuilt 0a8ec97
+
+* Wed Mar 06 2019 Dan Walsh <dwalsh@redhat.com> - 1.8-8.dev.git3afba37
+- Add recommends for fuse-overlay and slirp4netns
+
+* Wed Mar 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-7.dev.git3afba37
+- autobuilt 3afba37
+
+* Tue Mar 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-6.dev.git11dd219
+- autobuilt 11dd219
+
+* Fri Mar 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-5.dev.git8b1d11f
+- autobuilt 8b1d11f
+
+* Thu Feb 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-4.dev.git95a5089
+- autobuilt 95a5089
+
+* Tue Feb 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-3.dev.git6c1a4cc
+- autobuilt 6c1a4cc
+
+* Sat Feb 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-2.dev.git8c3d8b1
+- bump to 1.8
+- autobuilt 8c3d8b1
+
+* Fri Feb 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-20.dev.git873f001
+- autobuilt 873f001
+
+* Thu Feb 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-19.dev.gitdb6e7bb
+- autobuilt db6e7bb
+
+* Wed Feb 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-18.dev.git1b02a7e
+- autobuilt 1b02a7e
+
+* Mon Feb 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-17.dev.git146a0fc
+- autobuilt 146a0fc
+
+* Sat Feb 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-16.dev.git80fcb24
+- autobuilt 80fcb24
+
+* Fri Feb 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-15.dev.git40d4d59
+- autobuilt 40d4d59
+
+* Thu Feb 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-14.dev.gite4c4d46
+- autobuilt e4c4d46
+
+* Sun Feb 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-13.dev.git711f9ea
+- autobuilt 711f9ea
+
+* Fri Feb 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-12.dev.git310363c
+- autobuilt 310363c
+
+* Wed Feb 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-11.dev.git50539b5
+- autobuilt 50539b5
+
+* Tue Feb 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-10.dev.gitad24f28
+- autobuilt ad24f28
+
+* Sat Feb 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-9.dev.git973bb88
+- autobuilt 973bb88
+
+* Fri Feb 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-8.dev.git03f6247
+- autobuilt 03f6247
+
+* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-7.dev.gite702872
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Tue Jan 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-6.dev.gite702872
+- autobuilt e702872
+
+* Thu Jan 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-5.dev.gitf1cec50
+- autobuilt f1cec50
+
+* Tue Jan 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-4.dev.git4bcddb7
+- autobuilt 4bcddb7
+
+* Mon Jan 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-3.dev.git9b9ed1d
+- autobuilt 9b9ed1d
+
+* Sun Jan 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-2.dev.git7a85ca7
+- bump to 1.7
+- autobuilt 7a85ca7
+
+* Sat Jan 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-2.dev.git5f95bd9
+- bump to 1.6
+- autobuilt 5f95bd9
+
+* Fri Jan 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-2.dev.git0f114e9
+- bump to 1.7
+- autobuilt 0f114e9
+
+* Thu Jan 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-33.dev.git66ff1dd
+- autobuilt 66ff1dd
+
+* Wed Jan 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-32.dev.gitd7e530e
+- autobuilt d7e530e
+
+* Tue Jan 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-31.dev.gitfe7e09c
+- autobuilt fe7e09c
+
+* Sun Jan 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-30.dev.gitfa86533
+- autobuilt fa86533
+
+* Sat Jan 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-29.dev.gitf6a0258
+- autobuilt f6a0258
+
+* Fri Jan 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-28.dev.git5d22f3c
+- autobuilt 5d22f3c
+
+* Thu Jan 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-27.dev.git1ef527c
+- autobuilt 1ef527c
+
+* Wed Jan 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-26.dev.git169a923
+- autobuilt 169a923
+
+* Tue Jan 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-25.dev.git48b44e5
+- autobuilt 48b44e5
+
+* Mon Jan 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-24.dev.gita4200ae
+- autobuilt a4200ae
+
+* Sun Jan 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-23.dev.gitbb710f3
+- autobuilt bb710f3
+
+* Sat Jan 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-22.dev.git8f05aa6
+- autobuilt 8f05aa6
+
+* Fri Jan 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-21.dev.git579f1d5
+- autobuilt 579f1d5
+
+* Thu Jan 03 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-20.dev.gite55a9f3
+- autobuilt e55a9f3
+
+* Tue Dec 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd99.dev.giteebbba2
+- autobuilt eebbba2
+
+* Thu Dec 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd98.dev.git4674656
+- autobuilt 4674656
+
+* Wed Dec 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd97.dev.gitdd3dff5
+- autobuilt dd3dff5
+
+* Sun Dec 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd96.dev.git96c68db
+- autobuilt 96c68db
+
+* Fri Dec 14 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd95.dev.gitde7f480
+- autobuilt de7f480
+
+* Wed Dec 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd94.dev.git90ea890
+- autobuilt 90ea890
+
+* Mon Dec 10 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd93.dev.gitdd0f4f1
+- autobuilt dd0f4f1
+
+* Sat Dec 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd92.dev.git1e1dc14
+- autobuilt 1e1dc14
+
+* Fri Dec 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd91.dev.git9c1d273
+- autobuilt 9c1d273
+
+* Thu Dec 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd90.dev.git5cca1d6
+- autobuilt 5cca1d6
+
+* Wed Dec 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-9.dev.git01f9ae2
+- autobuilt 01f9ae2
+
+* Tue Dec 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-8.dev.git9c65e56
+- autobuilt 9c65e56
+
+* Sun Dec 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-7.dev.gitb68a8e1
+- autobuilt b68a8e1
+
+* Sat Dec 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-6.dev.git2b582d3
+- autobuilt 2b582d3
+
+* Fri Nov 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-5.dev.git6e00183
+- autobuilt 6e00183
+
+* Thu Nov 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-4.dev.git93d8b9f
+- autobuilt 93d8b9f
+
+* Wed Nov 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-3.dev.git4126176
+- autobuilt 4126176
+
+* Fri Nov 23 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-2.dev.gitd5a3c52
+- bump to 1.6
+- autobuilt d5a3c52
+
+* Thu Nov 22 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-12.dev.git25d89b4
+- autobuilt 25d89b4
+
+* Wed Nov 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-11.dev.git2ac987a
+- autobuilt 2ac987a
+
+* Tue Nov 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-10.dev.gitc9cb148
+- autobuilt c9cb148
+
+* Sat Nov 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-9.dev.git18309de
+- autobuilt 18309de
+
+* Fri Nov 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-8.dev.gitd7e0993
+- autobuilt d7e0993
+
+* Thu Nov 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-7.dev.gitdac7819
+- autobuilt dac7819
+
+* Tue Nov 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-6.dev.gitfb2b2bd
+- autobuilt fb2b2bd
+
+* Sat Nov 10 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-5.dev.git9add3c8
+- autobuilt 9add3c8
+
+* Fri Nov 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-4.dev.git74e0b6f
+- autobuilt 74e0b6f
+
+* Thu Nov 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-3.dev.git0ae8b51
+- autobuilt 0ae8b51
+
+* Wed Nov 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-2.dev.git7341758
+- autobuilt 7341758
+
+* Tue Oct 2 2018 Dan Walsh <dwalsh@redhat.com> - 1.5-1.dev.git87239ae
+- bump to v1.5-dev Release
+
+* Wed Sep 19 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-2.dev.git19e44f0
+- autobuilt 19e44f0
+
+* Sun Aug 12 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-1.dev.git0a7389c
+- bump to v1.4-dev
+- built 0a7389c
+
+* Wed Aug 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-11.dev.git02f54e4
+- autobuilt 02f54e4
+
+* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.3-10.dev.gitbe03809
+- Rebuild with fixed binutils
+
+* Sun Jul 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-9.dev.gitbe03809
+- autobuilt be03809
+
+* Sat Jul 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-8.dev.gitc18724e
+- autobuilt c18724e
+
+* Thu Jul 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-7.dev.git4976d8c
+- autobuilt 4976d8c
+
+* Wed Jul 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-6.dev.gite5f7539
+- autobuilt e5f7539
+
+* Mon Jul 23 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-5.dev.dev.git826733a
+- Change container-selinux Requires to Recommends
+
+* Fri Jul 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-4.dev.git826733a
+- autobuilt 826733a
+
+* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-3.dev.git1215b16
+- buildah does not require ostree
+
+* Thu Jul 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-2.dev.git1215b16
+- autobuilt 1215b16
+
+* Tue Jul 17 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.3-1.dev.gita9895bd
+- bump to v1.3-dev
+- built a9895bd
+
+* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-25.dev.git3fb864b
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Mon Jul 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-24.git3fb864b
+- autobuilt 3fb864b
+
+* Sun Jul 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-23.git8be2b62
+- autobuilt 8be2b62
+
+* Sat Jul 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-22.gita885bc6
+- autobuilt a885bc6
+
+* Fri Jul 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-21.git733cd20
+- autobuilt 733cd20
+
+* Thu Jul 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-20.gita59fb7a
+- autobuilt a59fb7a
+
+* Tue Jul 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-19.git5c11c34
+- autobuilt 5c11c34
+
+* Mon Jul 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-18.git5cd9be6
+- autobuilt 5cd9be6
+
+* Sun Jul 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-17.git6f72599
+- autobuilt 6f72599
+
+* Sat Jun 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-16.git704adec
+- autobuilt 704adec
+
+* Fri Jun 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-15.gitb965fc4
+- autobuilt b965fc4
+
+* Thu Jun 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-14.git1acccce
+- autobuilt 1acccce
+
+* Wed Jun 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-13.git146c185
+- autobuilt 146c185
+
+* Tue Jun 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-12.git16a33bd
+- autobuilt 16a33bd
+
+* Mon Jun 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-11.git2ac95ea
+- autobuilt 2ac95ea
+
+* Sat Jun 23 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-10.git0143a44
+- autobuilt 0143a44
+
+* Thu Jun 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-9.git2441ff4
+- autobuilt 2441ff4
+
+* Wed Jun 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-8.gitda7be32
+- autobuilt da7be32
+
+* Tue Jun 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-7.git2064b29
+- autobuilt 2064b29
+
+* Mon Jun 18 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-6.git93d8606
+- autobuilt 93d8606
+
+* Fri Jun 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-5.gitfc438bb
+- autobuilt fc438bb
+
+* Thu Jun 14 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-4.git73820fc
+- autobuilt 73820fc
+
+* Wed Jun 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-3.git6c4bef7
+- autobuilt 6c4bef7
+
+* Tue Jun 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-2.git94c1e6d
+- autobuilt 94c1e6d
+
+* Mon Jun 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-1.gitb9983a6
+- bump to 1.2
+- autobuilt b9983a6
+
+* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
+- Drop capabilities if running container processes as non root
+- Print Warning message if cmd will not be used based on entrypoint
+- Update 01-intro.md
+- Shouldn't add insecure registries to list of search registries
+- Report errors on bad transports specification when pushing images
+- Move parsing code out of common for namespaces and into pkg/parse.go
+- Add disable-content-trust noop flag to bud
+- Change freenode chan to buildah
+- runCopyStdio(): don't close stdin unless we saw POLLHUP
+- Add registry errors for pull
+- runCollectOutput(): just read until the pipes are closed on us
+- Run(): provide redirection for stdio
+- rmi, rm: add test
+- add mount test
+- Add parameter judgment for commands that do not require parameters
+- Add context dir to bud command in baseline test
+- run.bats: check that we can run with symlinks in the bundle path
+- Give better messages to users when image can not be found
+- use absolute path for bundlePath
+- Add environment variable to buildah --format
+- rm: add validation to args and all option
+- Accept json array input for config entrypoint
+- Run(): process RunOptions.Mounts, and its flags
+- Run(): only collect error output from stdio pipes if we created some
+- Add OnBuild support for Dockerfiles
+- Quick fix on demo readme
+- run: fix validate flags
+- buildah bud should require a context directory or URL
+- Touchup tutorial for run changes
+- Validate common bud and from flags
+- images: Error if the specified imagename does not exist
+- inspect: Increase err judgments to avoid panic
+- add test to inspect
+- buildah bud picks up ENV from base image
+- Extend the amount of time travis_wait should wait
+- Add a make target for Installing CNI plugins
+- Add tests for namespace control flags
+- copy.bats: check ownerships in the container
+- Fix SELinux test errors when SELinux is enabled
+- Add example CNI configurations
+- Run: set supplemental group IDs
+- Run: use a temporary mount namespace
+- Use CNI to configure container networks
+- add/secrets/commit: Use mappings when setting permissions on added content
+- Add CLI options for specifying namespace and cgroup setup
+- Always set mappings when using user namespaces
+- Run(): break out creation of stdio pipe descriptors
+- Read UID/GID mapping information from containers and images
+- Additional bud CI tests
+- Run integration tests under travis_wait in Travis
+- build-using-dockerfile: add --annotation
+- Implement --squash for build-using-dockerfile and commit
+- Vendor in latest container/storage for devicemapper support
+- add test to inspect
+- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
+- Test with Go 1.10, too
+- Add console syntax highlighting to troubleshooting page
+- bud.bats: print "$output" before checking its contents
+- Manage "Run" containers more closely
+- Break Builder.Run()'s "run runc" bits out
+- util.ResolveName(): handle completion for tagged/digested image names
+- Handle /etc/hosts and /etc/resolv.conf properly in container
+- Documentation fixes
+- Make it easier to parse our temporary directory as an image name
+- Makefile: list new pkg/ subdirectoris as dependencies for buildah
+- containerImageSource: return more-correct errors
+- API cleanup: PullPolicy and TerminalPolicy should be types
+- Make "run --terminal" and "run -t" aliases for "run --tty"
+- Vendor github.com/containernetworking/cni v0.6.0
+- Update github.com/containers/storage
+- Update github.com/projectatomic/libpod
+- Add support for buildah bud --label
+- buildah push/from can push and pull images with no reference
+- Vendor in latest containers/image
+- Update gometalinter to fix install.tools error
+- Update troubleshooting with new run workaround
+- Added a bud demo and tidied up
+- Attempt to download file from url, if fails assume Dockerfile
+- Add buildah bud CI tests for ENV variables
+- Re-enable rpm .spec version check and new commit test
+- Update buildah scratch demo to support el7
+- Added Docker compatibility demo
+- Update to F28 and new run format in baseline test
+- Touchup man page short options across man pages
+- Added demo dir and a demo. chged distrorlease
+- builder-inspect: fix format option
+- Add cpu-shares short flag (-c) and cpu-shares CI tests
+- Minor fixes to formatting in rpm spec changelog
+- Fix rpm .spec changelog formatting
+- CI tests and minor fix for cache related noop flags
+- buildah-from: add effective value to mount propagation
+
+* Sat Jun 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-20.gitf449b28
+- autobuilt f449b28
+
+* Fri Jun 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-19.gitc306342
+- autobuilt c306342
+
+* Wed Jun 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-18.gitd3d097b
+- autobuilt d3d097b
+
+* Mon Jun 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-17.gitf90b6c0
+- autobuilt f90b6c0
+
+* Sun Jun 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-16.git70641ee
+- autobuilt 70641ee
+
+* Sat Jun 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-15.git03686e5
+- autobuilt 03686e5
+
+* Fri Jun 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-14.git73bfd79
+- autobuilt 73bfd79
+
+* Thu May 31 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-13.git5595d4d
+- autobuilt 5595d4d
+
+* Wed May 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-12.gitebb0d8e
+- autobuilt ebb0d8e
+
+* Tue May 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-11.git88affbd
+- autobuilt 88affbd
+
+* Fri May 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-10.git25f4e8e
+- autobuilt 25f4e8e
+
+* Thu May 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-9.git2749191
+- autobuilt 2749191
+
+* Wed May 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-8.git3e320b9
+- autobuilt 3e320b9
+
+* Tue May 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-7.git8515867
+- autobuilt 8515867
+
+* Sun May 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-6.gitce8d467
+- autobuilt ce8d467
+
+* Sat May 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-5.gitb9a1041
+- autobuilt b9a1041
+
+* Fri May 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-4.git2ea3e11
+- autobuilt 2ea3e11
+
+* Wed May 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-3.gitfe204e4
+- autobuilt fe204e4
+
+* Tue May 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-2.git906ee37
+- autobuilt 906ee37
+
+* Mon May 07 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
+- Remove buildah run cmd and entrypoint execution
+- Add Files section with registries.conf to pertinent man pages
+- Force "localhost" as a default registry
+- Add --compress, --rm, --squash flags as a noop for bud
+- Add FIPS mode secret to buildah run and bud
+- Add config --comment/--domainname/--history-comment/--hostname
+- Add support for --iidfile to bud and commit
+- Add /bin/sh -c to entrypoint in config
+- buildah images and podman images are listing different sizes
+- Remove tarball as an option from buildah push --help
+- Update entrypoint behaviour to match docker
+- Display imageId after commit
+- config: add support for StopSignal
+- Allow referencing stages as index and names
+- Add multi-stage builds support
+- Vendor in latest imagebuilder, to get mixed case AS support
+- Allow umount to have multi-containers
+- Update buildah push doc
+- buildah bud walks symlinks
+- Imagename is required for commit atm, update manpage
+
+* Mon May 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-25.gitdd02e70
+- autobuilt dd02e70
+
+* Sat May 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-24.git45772e8
+- autobuilt 45772e8
+
+* Fri May 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-23.git6fe2b55
+- autobuilt 6fe2b55
+
+* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-22.gita4f5707
+- autobuilt a4f5707
+
+* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-21.gite130f2b
+- autobuilt commit e130f2b
+
+* Tue May 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-20.gitadb8e6f
+- autobuilt commit adb8e6f
+
+* Sat Apr 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-19.gitc50c287
+- autobuilt commit c50c287
+
+* Fri Apr 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-18.gitca1704f
+- autobuilt commit ca1704f
+
+* Wed Apr 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-17.git49abf82
+- autobuilt commit 49abf82
+
+* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-16.gitfdc3998
+- autobuilt commit fdc3998
+
+* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-15.gitb16a1ea
+- autobuilt commit b16a1ea
+
+* Fri Apr 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-14.gitd84f05a
+- autobuilt commit d84f05a
+
+* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-13.gite008b73
+- autobuilt commit e008b73
+
+* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-12.git28a27a3
+- autobuilt commit 28a27a3
+
+* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-11.git45a4b81
+- autobuilt commit 45a4b81
+
+* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-10.git45a4b81
+- autobuilt commit 45a4b81
+
+* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-9.git6421399
+- autobuilt commit 6421399
+
+* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-8.git83d7d10
+- autobuilt commit 83d7d10
+
+* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-7.git83d7d10
+- autobuilt commit 83d7d10
+
+* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-6.git83d7d10
+- autobuilt commit 83d7d10
+
+* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-5.git4339223
+- autobuilt commit 4339223
+
+* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-4.git4339223
+- autobuilt commit 4339223
+
+* Mon Apr 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-3.git4339223
+- autobuilt commit 4339223
+
+* Sun Apr 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-2.git4743c2e
+- autobuilt commit 4743c2e
+
+* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
+- Add support for shell
+- Vendor in latest containers/image
+- docker-archive generates docker legacy compatible images
+- Do not create $DiffID subdirectories for layers with no configs
+- Ensure the layer IDs in legacy docker/tarfile metadata are unique
+- docker-archive: repeated layers are symlinked in the tar file
+- sysregistries: remove all trailing slashes
+- Improve docker/* error messages
+- Fix failure to make auth directory
+- Create a new slice in Schema1.UpdateLayerInfos
+- Drop unused storageImageDestination.{image,systemContext}
+- Load a *storage.Image only once in storageImageSource
+- Support gzip for docker-archive files
+- Remove .tar extension from blob and config file names
+- ostree, src: support copy of compressed layers
+- ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
+- image: fix docker schema v1 -> OCI conversion
+- Add /etc/containers/certs.d as default certs directory
+- Change image time to locale, add troubleshooting.md, add logo to other mds
+- Allow --cmd parameter to have commands as values
+- Document the mounts.conf file
+- Fix man pages to format correctly
+- buildah from now supports pulling images using the following transports:
+- docker-archive, oci-archive, and dir.
+- If the user overrides the storage driver, the options should be dropped
+- Show Config/Manifest as JSON string in inspect when format is not set
+- Adds feature to pull compressed docker-archive files
+
+* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
+- Fix handling of buildah run command options
+
+* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
+- If commonOpts do not exist, we should return rather then segfault
+- Display full error string instead of just status
+- Implement --volume and --shm-size for bud and from
+- Fix secrets patch for buildah bud
+- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
+
+* Sun Feb 25 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.13-2
+- Build on ARMv7 too (Fedora supports containers on that arch too)
+
+* Thu Feb 22 2018 Dan Walsh <dwalsh@redhat.com> 0.13-1
+- Vendor in latest containers/storage
+- This fixes a large SELinux bug.  
+- run: do not open /etc/hosts if not needed
+- Add the following flags to buildah bud and from
+            --add-host
+            --cgroup-parent
+            --cpu-period
+            --cpu-quota
+            --cpu-shares
+            --cpuset-cpus
+            --cpuset-mems
+            --memory
+            --memory-swap
+            --security-opt
+            --ulimit
+
+* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
+- Added handing for simpler error message for Unknown Dockerfile instructions.
+- Change default certs directory to /etc/containers/certs.dir
+- Vendor in latest containers/image
+- Vendor in latest containers/storage
+- build-using-dockerfile: set the 'author' field for MAINTAINER
+- Return exit code 1 when buildah-rmi fails
+- Trim the image reference to just its name before calling getImageName
+- Touch up rmi -f usage statement
+- Add --format and --filter to buildah containers
+- Add --prune,-p option to rmi command
+- Add authfile param to commit
+- Fix --runtime-flag for buildah run and bud
+- format should override quiet for images
+- Allow all auth params to work with bud
+- Do not overwrite directory permissions on --chown
+- Unescape HTML characters output into the terminal
+- Fix: setting the container name to the image
+- Prompt for un/pwd if not supplied with --creds
+- Make bud be really quiet
+- Return a better error message when failed to resolve an image
+- Update auth tests and fix bud man page
+
+* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11-3.git6bad262
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.11-2
+- Resolves: upstream gh#432
+- enable debuginfo for non-fedora packages
+
+* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
+- Add --all to remove containers
+- Add --all functionality to rmi
+- Show ctrid when doing rm -all
+- Ignore sequential duplicate layers when reading v2s1
+- Lots of minor bug fixes
+- Vendor in latest containers/image and containers/storage
+
+* Tue Dec 26 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
+- Fix checkin
+
+* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
+- Display Config and Manifest as strings
+- Bump containers/image
+- Use configured registries to resolve image names
+- Update to work with newer image library
+- Add --chown option to add/copy commands
+
+* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
+- Allow push to use the image id
+- Make sure builtin volumes have the correct label
+
+* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
+- Buildah bud was failing on SELinux machines, this fixes this
+- Block access to certain kernel file systems inside of the container
+
+* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
+- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
+- Use credentials from kpod login for buildah
+
+* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.6-1
+- Adds support for converting manifest types when using the dir transport
+- Rework how we do UID resolution in images
+- Bump github.com/vbatts/tar-split
+- Set option.terminal appropriately in run
+
+* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
+- Bump github.com/vbatts/tar-split
+- Fixes CVE That could allow a container image to cause a DOS
+
+* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
+- Add secrets patch to buildah
+- Add proper SELinux labeling to buildah run
+- Add tls-verify to bud command
+- Make filtering by date use the image's date
+- images: don't list unnamed images twice
+- Fix timeout issue
+- Add further tty verbiage to buildah run
+- Make inspect try an image on failure if type not specified
+- Add support for `buildah run --hostname`
+- Tons of bug fixes and code cleanup
+
+* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
+- Add default transport to push if not provided
+- Avoid trying to print a nil ImageReference
+- Add authentication to commit and push
+- Add information on buildah from man page on transports
+- Remove --transport flag
+- Run: do not complain about missing volume locations
+- Add credentials to buildah from
+- Remove export command
+- Run(): create the right working directory
+- Improve "from" behavior with unnamed references
+- Avoid parsing image metadata for dates and layers
+- Read the image's creation date from public API
+- Bump containers/storage and containers/image
+- Don't panic if an image's ID can't be parsed
+- Turn on --enable-gc when running gometalinter
+- rmi: handle truncated image IDs
+
+* Tue Aug 15 2017 Josh Boyer <jwboyer@redhat.com> - 0.3-5.gitb9b2a8a
+- Build for s390x as well
+
+* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
+- Bump for inclusion of OCI 1.0 Runtime and Image Spec
+
+* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
+- buildah run: Add support for -- ending options parsing 
+- buildah Add/Copy support for glob syntax
+- buildah commit: Add flag to remove containers on commit
+- buildah push: Improve man page and help information
+- buildah run: add a way to disable PTY allocation
+- Buildah docs: clarify --runtime-flag of run command
+- Update to match newer storage and image-spec APIs
+- Update containers/storage and containers/image versions
+- buildah export: add support
+- buildah images: update commands
+- buildah images: Add JSON output option
+- buildah rmi: update commands
+- buildah containers: Add JSON output option
+- buildah version: add command
+- buildah run: Handle run without an explicit command correctly
+- Ensure volume points get created, and with perms
+- buildah containers: Add a -a/--all option
+
+* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
+- Release Candidate 1
+- All features have now been implemented.
+
+* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
+- First package for Fedora