Back to development

This commit is contained in:
Tim-Philipp Müller 2018-03-20 10:21:36 +00:00
parent 2fdb040b26
commit 034d818ec5
4 changed files with 71 additions and 1083 deletions

1125
NEWS

File diff suppressed because it is too large Load diff

15
RELEASE
View file

@ -1,18 +1,15 @@
This is GStreamer gst-rtsp-server 1.14.0. This is GStreamer gst-rtsp-server 1.15.0.1.
The GStreamer team is thrilled to announce a new major feature release in the GStreamer 1.15 is the development version leading up to the next major
stable 1.x API series of your favourite cross-platform multimedia framework! stable version which will be 1.16.
As always, this release is again packed with new features, bug fixes and The 1.15 development series adds new features on top of the 1.14 series and is
other improvements.
The 1.14 release series adds new features on top of the 1.12 series and is
part of the API and ABI-stable 1.x release series of the GStreamer multimedia part of the API and ABI-stable 1.x release series of the GStreamer multimedia
framework. framework.
Full release notes can be found at: Full release notes will one day be found at:
https://gstreamer.freedesktop.org/releases/1.14/ https://gstreamer.freedesktop.org/releases/1.16/
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly Binaries for Android, iOS, Mac OS X and Windows will be provided shortly
after the release. after the release.

View file

@ -2,7 +2,7 @@ AC_PREREQ(2.69)
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 RTSP Server Library], [1.14.0], AC_INIT([GStreamer RTSP Server Library], [1.15.0.1],
[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],
[gst-rtsp-server]) [gst-rtsp-server])
AG_GST_INIT AG_GST_INIT
@ -53,13 +53,13 @@ dnl 1.2.5 => 205
dnl 1.10.9 (who knows) => 1009 dnl 1.10.9 (who knows) => 1009
dnl dnl
dnl sets GST_LT_LDFLAGS dnl sets GST_LT_LDFLAGS
AS_LIBTOOL(GST, 1400, 0, 1400) AS_LIBTOOL(GST, 1500, 0, 1500)
dnl *** required versions of GStreamer stuff *** dnl *** required versions of GStreamer stuff ***
GST_REQ=1.14.0 GST_REQ=1.15.0.1
GSTPB_REQ=1.14.0 GSTPB_REQ=1.15.0.1
GSTPG_REQ=1.14.0 GSTPG_REQ=1.15.0.1
GSTPD_REQ=1.14.0 GSTPD_REQ=1.15.0.1
dnl *** autotools stuff **** dnl *** autotools stuff ****

View file

@ -1,5 +1,5 @@
project('gst-rtsp-server', 'c', project('gst-rtsp-server', 'c',
version : '1.14.0', version : '1.15.0.1',
meson_version : '>= 0.33.0', meson_version : '>= 0.33.0',
default_options : ['warning_level=1', 'buildtype=debugoptimized']) default_options : ['warning_level=1', 'buildtype=debugoptimized'])