Release 1.13.91

This commit is contained in:
Tim-Philipp Müller 2018-03-13 19:26:51 +00:00
parent 6761a03fed
commit 5328250745
6 changed files with 937 additions and 41 deletions

View file

@ -1,7 +1,39 @@
=== release 1.13.91 ===
2018-03-13 19:26:51 +0000 Tim-Philipp Müller <tim@centricular.com>
* NEWS:
* RELEASE:
* configure.ac:
* gst-libav.doap:
* meson.build:
Release 1.13.91
2018-03-13 19:26:51 +0000 Tim-Philipp Müller <tim@centricular.com>
* docs/plugins/inspect/plugin-libav.xml:
Update docs
2018-03-08 11:22:29 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* configure.ac:
configure.ac: enable largefile support if possible
https://bugzilla.gnome.org/show_bug.cgi?id=793103
2018-03-06 14:40:20 +1100 Matthew Waters <matthew@centricular.com>
* gst-libs/ext/Makefile.am:
build: prefer using *.la references when creating our own libtool files
Otherwise we will reference the dependant libraries with -lfoo rather than
/path/to/libfoo.la which breaks with the Android-based .la parser which
simply passes through all -l libraries.
https://bugzilla.gnome.org/show_bug.cgi?id=786403
=== release 1.13.90 ===
2018-03-03 22:44:19 +0000 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:

924
NEWS

File diff suppressed because it is too large Load diff

View file

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

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.69)
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 libav, 1.13.90,
AC_INIT(GStreamer libav, 1.13.91,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-libav)
@ -42,11 +42,11 @@ AC_SUBST(GST_API_VERSION)
dnl *** Check for external $AS vs detected by AS_LIBTOOL
user_AS="$AS"
AG_GST_LIBTOOL_PREPARE
AS_LIBTOOL(GST, 1390, 0, 1390)
AS_LIBTOOL(GST, 1391, 0, 1391)
dnl *** required versions of GStreamer stuff ***
GST_REQ=1.13.90
GST_PBREQ=1.13.90
GST_REQ=1.13.91
GST_PBREQ=1.13.91
ORC_REQ=0.4.16
ORC_CHECK([$ORC_REQ])

View file

@ -32,6 +32,16 @@ colorspace conversion elements.
</GitRepository>
</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-libav/gst-libav-1.13.91.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.13.90</revision>

View file

@ -1,5 +1,5 @@
project('gst-libav', 'c', 'cpp',
version : '1.13.90',
version : '1.13.91',
meson_version : '>= 0.36.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])