New upstream stable release.
diff --git a/debian/build-deps b/debian/build-deps
index 0d450a7..119f8ae 100644
--- a/debian/build-deps
+++ b/debian/build-deps
@@ -15,7 +15,7 @@
 @GST_EXTRA_BUILD_DEPENDS@
 @GST_LIB_DEV_DEP@
 gstreamer@GST_ABI@-doc
-gstreamer@GST_ABI@-plugins-base (>= 1.5.91)
+gstreamer@GST_ABI@-plugins-base (>= 1.6.0)
 gstreamer@GST_ABI@-plugins-base-doc
 gtk-doc-tools (>= 1.12)
 ladspa-sdk
@@ -42,7 +42,7 @@
 libgme-dev
 libgnutls28-dev (>= 2.11.3)
 libgsm1-dev
-libgstreamer-plugins-base@GST_ABI@-dev (>= 1.5.91)
+libgstreamer-plugins-base@GST_ABI@-dev (>= 1.6.0)
 libgtk-3-dev (>= 3.15.0)
 libiptcdata0-dev (>= 1.0.2)
 libjasper-dev
diff --git a/debian/build-deps.in b/debian/build-deps.in
index becbe2b..ecb0eb4 100644
--- a/debian/build-deps.in
+++ b/debian/build-deps.in
@@ -1,6 +1,6 @@
 @GST_LIB_DEV_DEP@
 @GST_EXTRA_BUILD_DEPENDS@
-libgstreamer-plugins-base@GST_ABI@-dev (>= 1.5.91)
+libgstreamer-plugins-base@GST_ABI@-dev (>= 1.6.0)
 autotools-dev
 dh-autoreconf
 automake (>= 1.14)
@@ -29,7 +29,7 @@
 libexempi-dev
 libiptcdata0-dev (>= 1.0.2)
 libwildmidi-dev (>= 0.2.3)
-gstreamer@GST_ABI@-plugins-base (>= 1.5.91)
+gstreamer@GST_ABI@-plugins-base (>= 1.6.0)
 libofa0-dev (>= 0.9.3)
 libdvdnav-dev (>= 4.1.2) [!hurd-any]
 libssl-dev
diff --git a/debian/changelog b/debian/changelog
index 980dbf3..5b3de7e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gst-plugins-bad1.0 (1.6.0-1) unstable; urgency=medium
+
+  * New upstream stable release.
+
+ -- Sebastian Dröge <slomo@debian.org>  Fri, 25 Sep 2015 23:02:02 +0200
+
 gst-plugins-bad1.0 (1.5.91-1) experimental; urgency=medium
 
   * New upstream release candidate.
diff --git a/debian/control b/debian/control
index a5dc321..ee44db2 100644
--- a/debian/control
+++ b/debian/control
@@ -26,9 +26,9 @@
                libbluetooth-dev (>= 5) [linux-any],
                libsbc-dev (>= 1.1) [linux-any],
                libwayland-dev (>= 1.0) [linux-any],
-               libgstreamer1.0-dev (>= 1.5.91),
+               libgstreamer1.0-dev (>= 1.6.0),
                gstreamer1.0-doc,
-               gstreamer1.0-plugins-base (>= 1.5.91),
+               gstreamer1.0-plugins-base (>= 1.6.0),
                gstreamer1.0-plugins-base-doc,
                gtk-doc-tools (>= 1.12),
                ladspa-sdk,
@@ -55,7 +55,7 @@
                libgme-dev,
                libgnutls28-dev (>= 2.11.3),
                libgsm1-dev,
-               libgstreamer-plugins-base1.0-dev (>= 1.5.91),
+               libgstreamer-plugins-base1.0-dev (>= 1.6.0),
                libgtk-3-dev (>= 3.15.0),
                libiptcdata0-dev (>= 1.0.2),
                libjasper-dev,
diff --git a/debian/patches/0001-Make-sure-to-link-gme-plugin-with-lz.patch b/debian/patches/0001-Make-sure-to-link-gme-plugin-with-lz.patch
new file mode 100644
index 0000000..217d806
--- /dev/null
+++ b/debian/patches/0001-Make-sure-to-link-gme-plugin-with-lz.patch
@@ -0,0 +1,37 @@
+From aefc177ca791ebba8acc048cb8526ef3277f6eca Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
+Date: Fri, 25 Sep 2015 23:22:02 +0200
+Subject: [PATCH] Make sure to link gme plugin with -lz
+
+---
+ configure.ac | 5 ++++-
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index aba2ec0..b5ef3a5 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -2843,9 +2843,11 @@ AG_GST_CHECK_FEATURE(SPC, [spc decoder], spc, [
+ dnl *** gme ***
+ translit(dnm, m, l) AM_CONDITIONAL(USE_GME, true)
+ AG_GST_CHECK_FEATURE(GME, [gme decoder], gme, [
++  old_LIBS="$LIBS"
++  LIBS="$LIBS -lz"
+   AC_CHECK_HEADER(gme/gme.h, [
+     AC_CHECK_LIB(gme, gme_new_emu, [
+-      GME_LIBS="-lgme"
++      GME_LIBS="-lgme -lz"
+       AC_SUBST(GME_LIBS)
+       HAVE_GME=yes
+     ], [
+@@ -2860,6 +2862,7 @@ AG_GST_CHECK_FEATURE(GME, [gme decoder], gme, [
+       AC_DEFINE(HAVE_LIBGME_ACCURACY, 1, [Define if gme 0.5.6 or newer is available])
+       ])
+   fi
++  LIBS="$old_LIBS"
+ ])
+ 
+ dnl *** XVID ***
+-- 
+2.5.3
+
diff --git a/debian/patches/series b/debian/patches/series
index 6d98219..2eada45 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 01_fix-modplug-linking.patch
 02_opencv-linking.patch
+0001-Make-sure-to-link-gme-plugin-with-lz.patch
diff --git a/debian/rules b/debian/rules
index 3d44146..e6fbf83 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,7 +45,7 @@
 gst_lib=libgstreamer$(gst_abi)-0
 gst_lib_dev=libgstreamer$(gst_abi)-dev
 # what gstreamer version is needed
-gst_lib_dev_dep=$(gst_lib_dev) (>= 1.5.91)
+gst_lib_dev_dep=$(gst_lib_dev) (>= 1.6.0)
 
 gst_pkgname=gstreamer$(gst_abi)
 gst_deb_abi=$(gst_abi)-0