diff --git a/_service b/_service
index 680c797..1c25b05 100644
--- a/_service
+++ b/_service
@@ -4,8 +4,8 @@
https://github.com/projectatomic/buildah.git
git
buildah
-1.1
-v1.1
+1.2
+v1.2
diff --git a/buildah-1.1.tar.xz b/buildah-1.1.tar.xz
deleted file mode 100644
index 8630adf..0000000
--- a/buildah-1.1.tar.xz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3148bf7fb46afb3d1077ba575cef3608f66fafea0289021c136166586830876f
-size 2211400
diff --git a/buildah-1.2.tar.xz b/buildah-1.2.tar.xz
new file mode 100644
index 0000000..82efe75
--- /dev/null
+++ b/buildah-1.2.tar.xz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0c25b8828ee7fd74b3ea9e1f0114ade49e6cac3d10abe26a3060bdade910d831
+size 2305732
diff --git a/buildah.changes b/buildah.changes
index b11739f..a88b18c 100644
--- a/buildah.changes
+++ b/buildah.changes
@@ -1,3 +1,35 @@
+-------------------------------------------------------------------
+Mon Jul 16 06:33:14 UTC 2018 - vrothberg@suse.com
+
+- Update buildah to v1.2:
+ * build-using-dockerfile: let -t include transports again
+ * Block use of /proc/acpi and /proc/keys from inside containers
+ * Fix handling of -registries-conf
+ * Add -cidfile option to from
+ * Add a -loglevel option to build-with-dockerfile
+ * docs: Follow man-pages(7) suggestions for SYNOPSIS
+ * umount: add all option to umount all mounted containers
+ * Fix buildah bud -layers
+ * Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
+ * build without seccomp
+ * Add Capabilities lists to BuilderInfo
+ * Fix ARGS parsing for run commands
+ * Add info on registries.conf to from manpage
+ * mount: support multiple inputs
+ * Allow -userns-uid-map/-userns-gid-map to be global options
+ * Add -rm and -force-rm to buildah bud
+ * Add -all,-a flag to buildah images
+ * Add environment variable BUILDAH_RUNTIME
+ * Add -layers and -no-cache to buildah bud
+ * Change 'registries' to 'container registries' in man
+ * Add registries.conf link to a few man pages
+
+- install missing buildah (1) manpage
+
+- install bash completion at /usr/share/bash-completion/completions
+
+- buildmode=pie: build position independent code
+
-------------------------------------------------------------------
Mon Jun 11 05:52:37 UTC 2018 - vrothberg@suse.com
diff --git a/buildah.spec b/buildah.spec
index d462ea9..11a594e 100644
--- a/buildah.spec
+++ b/buildah.spec
@@ -23,7 +23,7 @@
%define with_libostree 1
%endif
Name: buildah
-Version: 1.1
+Version: 1.2
Release: 0
Summary: Tool for building OCI containers
License: Apache-2.0
@@ -89,7 +89,8 @@ export BUILDTAGS="seccomp apparmor containers_image_ostree_stub"
# Build buildah
go build -tags "$BUILDTAGS" \
- -i -ldflags '-s -w -X main.gitCommit=%{commit} -X main.buildInfo='$SOURCE_DATE_EPOCH'' \
+ -buildmode=pie \
+ -ldflags '-s -w -X main.gitCommit=%{commit} -X main.buildInfo='$SOURCE_DATE_EPOCH'' \
-o bin/buildah \
%{project}/cmd/buildah
@@ -105,15 +106,15 @@ cd $HOME/go/src/%{project}
install -D -m 0755 bin/buildah %{buildroot}/%{_bindir}/buildah
install -d %{buildroot}/%{_mandir}/man1
-install -m 0644 docs/buildah-*.1 %{buildroot}/%{_mandir}/man1
-install -D -m 0644 contrib/completions/bash/buildah %{buildroot}/%{_sysconfdir}/bash_completion.d/buildah
+install -m 0644 docs/buildah*.1 %{buildroot}/%{_mandir}/man1
+install -D -m 0644 contrib/completions/bash/buildah %{buildroot}/%{_datadir}/bash-completion/completions/buildah
%fdupes %{buildroot}/%{_prefix}
%files
%{_bindir}/buildah
-%{_mandir}/man1/buildah-*
-%config %{_sysconfdir}/bash_completion.d/buildah
+%{_mandir}/man1/buildah*
+%{_datadir}/bash-completion/completions/buildah
%license LICENSE
%changelog