summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-10-02 23:13:44 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-10-02 23:13:44 +0100
commit34b8ce18ca49dc8cb9d03f29d54640e1ef1d10b7 (patch)
tree01858a60e36bf87e4d1fa37232ba0d4586485dae
parent3f71b7b6741adbfaafbd5513ec5b4a2ae7c93e30 (diff)
Release 1.14.4gst-python-1.14.4
-rw-r--r--ChangeLog12
-rw-r--r--NEWS40
-rw-r--r--RELEASE2
-rw-r--r--configure.ac4
-rw-r--r--gst-python.doap10
-rw-r--r--meson.build2
6 files changed, 63 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index f0a66edd98..fde5c05c95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+=== release 1.14.4 ===
+
+2018-10-02 23:13:44 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
+ * configure.ac:
+ * gst-python.doap:
+ * meson.build:
+ Release 1.14.4
+
=== release 1.14.3 ===
2018-09-16 16:37:41 +0100 Tim-Philipp Müller <tim@centricular.com>
diff --git a/NEWS b/NEWS
index efb2c98a9d..d613e7d07e 100644
--- a/NEWS
+++ b/NEWS
@@ -1480,10 +1480,44 @@ For a full list of bugfixes see Bugzilla. Note that this is not the full
list of changes. For the full list of changes please refer to the GIT
logs or ChangeLogs of the particular modules.
-1.14.4 (future)
+1.14.4
-The fourth 1.14 bug-fix release (1.14.4) is scheduled to be released
-around October 2018.
+The fourth 1.14 bug-fix release (1.14.4) was released on 2 October 2018.
+
+This release only contains bugfixes and it should be safe to update from
+1.14.x.
+
+Highlighted bugfixes in 1.14.4
+
+- glviewconvert: wait and set the gl sync meta on buffers
+- glviewconvert: Copy composition meta from the primary buffer to both
+ outputs
+- glcolorconvert: Don’t copy overlay composition meta over to NULL
+ outbufs
+- matroskademux: add functionality needed for MSE use case fixing
+ youtube playback in epiphany/webkit-gtk
+- msdk: fix build on windows
+- opusenc: fix another crash on 32-bit x86 on windows (alignment issue
+ in SSE optimisations)
+- osxaudio: add support for parsing more channel layouts
+- tagdemux: Use upstream GST_EVENT_STREAM_START (and stream-id) if
+ present
+- vorbisdec: fix header handling regression: init decoder immediately
+ once we have headers
+- wasapisink: recover from low buffer levels in shared mode
+- fix GstSegment unit test which would fail on some 32-bit x86 CPUs
+
+Contributors to 1.14.4
+
+Alicia Boya García, Christoph Reiter, Edward Hervey, Jan Schmidt,
+Matthew Waters, Nicola Murino, Nicolas Dufresne, Sebastian Dröge,
+Tim-Philipp Müller, Wangfei, and many others. Thank you all.
+
+List of bugs fixed in 1.14.4
+
+For a full list of bugfixes see Bugzilla. Note that this is not the full
+list of changes. For the full list of changes please refer to the GIT
+logs or ChangeLogs of the particular modules.
Known Issues
diff --git a/RELEASE b/RELEASE
index aa622e0285..2afa59bf5f 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,4 +1,4 @@
-This is GStreamer gst-python 1.14.3.
+This is GStreamer gst-python 1.14.4.
The GStreamer team is pleased to announce another bug-fix release in the
stable 1.x API series of your favourite cross-platform multimedia framework!
diff --git a/configure.ac b/configure.ac
index d21b540f53..610ff6d01f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_PREREQ([2.68])
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
-AC_INIT(GStreamer GObject Introspection overrides for Python , 1.14.3,
+AC_INIT(GStreamer GObject Introspection overrides for Python , 1.14.4,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-python)
@@ -38,7 +38,7 @@ AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
dnl required versions of other packages
dnl Note that they are runtime requirements
-AC_SUBST(GST_REQ, 1.14.3)
+AC_SUBST(GST_REQ, 1.14.4)
AC_SUBST(PYGOBJECT_REQ, 3.8)
AC_DISABLE_STATIC
diff --git a/gst-python.doap b/gst-python.doap
index 95772d7c9f..fc5c9b3a66 100644
--- a/gst-python.doap
+++ b/gst-python.doap
@@ -32,6 +32,16 @@ GStreamer Python Bindings is a set of overrides and Gst fundamental types handli
<release>
<Version>
+ <revision>1.14.4</revision>
+ <branch>1.14</branch>
+ <name></name>
+ <created>2018-10-02</created>
+ <file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.14.4.tar.xz" />
+ </Version>
+ </release>
+
+ <release>
+ <Version>
<revision>1.14.3</revision>
<branch>1.14</branch>
<name></name>
diff --git a/meson.build b/meson.build
index 867e21f8f2..cd6e765730 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('gst-python', 'c', 'cpp',
- version : '1.14.3',
+ version : '1.14.4',
meson_version : '>= 0.36.0',
default_options : [ 'warning_level=1',
'c_std=gnu99',