Release 1.13.91

This commit is contained in:
Tim-Philipp Müller 2018-03-13 19:31:04 +00:00
parent abb68ad440
commit 10ba0a08ce
6 changed files with 915 additions and 39 deletions

View file

@ -1,7 +1,19 @@
=== release 1.13.91 ===
2018-03-13 19:31:04 +0000 Tim-Philipp Müller <tim@centricular.com>
* NEWS:
* RELEASE:
* configure.ac:
* gst-python.doap:
* meson.build:
Release 1.13.91
=== release 1.13.90 === === release 1.13.90 ===
2018-03-03 22:55:56 +0000 Tim-Philipp Müller <tim@centricular.com> 2018-03-03 22:55:56 +0000 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS: * NEWS:
* RELEASE: * RELEASE:
* configure.ac: * configure.ac:

924
NEWS

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
This is GStreamer gst-python 1.13.90. This is GStreamer gst-python 1.13.91.
The GStreamer team is pleased to announce the first release candidate for the The GStreamer team is pleased to announce the first release candidate for the
upcoming stable 1.14 release series. upcoming stable 1.14 release series.

View file

@ -3,7 +3,7 @@ AC_PREREQ([2.68])
dnl initialize autoconf dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right ! dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too dnl releases only do Wall, cvs and prerelease does Werror too
AC_INIT(GStreamer GObject Introspection overrides for Python , 1.13.90, AC_INIT(GStreamer GObject Introspection overrides for Python , 1.13.91,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-python) gst-python)
@ -38,7 +38,7 @@ AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
dnl required versions of other packages dnl required versions of other packages
dnl Note that they are runtime requirements dnl Note that they are runtime requirements
AC_SUBST(GST_REQ, 1.13.90) AC_SUBST(GST_REQ, 1.13.91)
AC_SUBST(PYGOBJECT_REQ, 3.0) AC_SUBST(PYGOBJECT_REQ, 3.0)
AC_DISABLE_STATIC AC_DISABLE_STATIC

View file

@ -30,6 +30,16 @@ GStreamer Python Bindings is a set of overrides and Gst fundamental types handli
</GitRepository> </GitRepository>
</repository> </repository>
<release>
<Version>
<revision>1.13.91</revision>
<branch>master</branch>
<name></name>
<created>2018-03-13</created>
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.13.91.tar.xz" />
</Version>
</release>
<release> <release>
<Version> <Version>
<revision>1.13.90</revision> <revision>1.13.90</revision>

View file

@ -1,5 +1,5 @@
project('gst-python', 'c', 'cpp', project('gst-python', 'c', 'cpp',
version : '1.13.90', version : '1.13.91',
meson_version : '>= 0.36.0', meson_version : '>= 0.36.0',
default_options : [ 'warning_level=1', default_options : [ 'warning_level=1',
'c_std=gnu99', 'c_std=gnu99',