Release 1.11.91

This commit is contained in:
Sebastian Dröge 2017-04-27 17:53:50 +03:00
parent 623d2df5a3
commit 538c58e77f
6 changed files with 55 additions and 14 deletions

View file

@ -1,9 +1,41 @@
=== release 1.11.90 ===
=== release 1.11.91 ===
2017-04-07 Sebastian Dröge <slomo@coaxion.net>
2017-04-27 Sebastian Dröge <slomo@coaxion.net>
* configure.ac:
releasing 1.11.90
releasing 1.11.91
2017-04-17 17:02:48 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* omx/gstomxvideoenc.c:
videoenc: use GST_ROUND_UP_N() macro
Makes the code much easier to read and understand.
https://bugzilla.gnome.org/show_bug.cgi?id=781409
2017-04-24 20:30:21 +0100 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From 60aeef6 to 48a5d85
2017-04-10 23:51:00 +0100 Tim-Philipp Müller <tim@centricular.com>
* autogen.sh:
* common:
Automatic update of common submodule
From 39ac2f5 to 60aeef6
=== release 1.11.90 ===
2017-04-07 16:36:45 +0300 Sebastian Dröge <sebastian@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-omx.doap:
* meson.build:
Release 1.11.90
2017-04-07 14:27:23 +0300 Sebastian Dröge <sebastian@centricular.com>

2
NEWS
View file

@ -1 +1 @@
This is GStreamer 1.11.90.
This is GStreamer 1.11.91.

11
RELEASE
View file

@ -1,7 +1,7 @@
Release notes for GStreamer OpenMAX IL wrapper plugin 1.11.90
Release notes for GStreamer OpenMAX IL wrapper plugin 1.11.91
The GStreamer team is pleased to announce the first release candidate of the
The GStreamer team is pleased to announce the second release candidate of the
stable 1.12 release series. The 1.12 release series is adding new features on
top of the 1.0, 1.2, 1.4, 1.6, 1.8 and 1.10 series and is part of the API and
ABI-stable 1.x release series of the GStreamer multimedia framework.
@ -42,7 +42,7 @@ contains a set of less supported plugins that haven't passed the
Bugs fixed in this release
* 780392 : Wrong variable check in meson.build
* 781409 : videoenc: use GST_ROUND_UP_N() macro
==== Download ====
@ -79,7 +79,6 @@ subscribe to the gstreamer-devel list.
Contributors to this release
* Gurkirpal Singh
* Jan Schmidt
* Sebastian Dröge
* Guillaume Desmottes
* Tim-Philipp Müller
 

View file

@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf
dnl releases only do -Wall, git and prerelease does -Werror too
dnl use a three digit version number for releases, and four for git/prerelease
AC_INIT(GStreamer OpenMAX Plug-ins, 1.11.90,
AC_INIT(GStreamer OpenMAX Plug-ins, 1.11.91,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-omx)
@ -45,10 +45,10 @@ AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION",
[GStreamer API Version])
AG_GST_LIBTOOL_PREPARE
AS_LIBTOOL(GST, 1190, 0, 1190)
AS_LIBTOOL(GST, 1191, 0, 1191)
dnl *** required versions of GStreamer stuff ***
GST_REQ=1.11.90
GST_REQ=1.11.91
dnl *** autotools stuff ****

View file

@ -31,6 +31,16 @@ a basic collection of elements
</GitRepository>
</repository>
<release>
<Version>
<revision>1.11.91</revision>
<branch>master</branch>
<name></name>
<created>2017-04-27</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-omx/gst-omx-1.11.91.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.11.90</revision>

View file

@ -1,5 +1,5 @@
project('gst-omx', 'c',
version : '1.11.90',
version : '1.11.91',
meson_version : '>= 0.36.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])