From ed79e99cfa194e7e974d4023f9b29fb61f952156 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 24 Feb 2017 15:10:07 +0200 Subject: [PATCH] Release 1.11.2 --- ChangeLog | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++-- NEWS | 2 +- RELEASE | 26 ++-------------------- configure.ac | 12 +++++------ gst-rtsp-server.doap | 10 +++++++++ 5 files changed, 78 insertions(+), 33 deletions(-) diff --git a/ChangeLog b/ChangeLog index 610dd60..febc1d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,66 @@ +=== release 1.11.2 === + +2017-02-24 Sebastian Dröge + + * configure.ac: + releasing 1.11.2 + +2017-02-14 20:40:26 +0000 Tim-Philipp Müller + + * Makefile.am: + meson: dist meson build files + Ship meson build files in tarballs, so people who use tarballs + in their builds can start playing with meson already. + +2017-02-07 23:39:37 +1100 Jan Schmidt + + * examples/test-record.c: + examples/test-record: Add extra line to initial printout + Add an example line of how to deliver a stream to the + RTSP RECORD example + +2017-01-19 14:57:19 +0200 Sebastian Dröge + + * gst/rtsp-server/rtsp-client.c: + rtsp-client: Also handle the (S|G)ET_PARAMETER case of size==0 || !data as keep-alive + If there is no Content-Length header, no body would be allocated and the + '\0' would also not be appended to the body. + +2017-01-19 14:24:07 +0200 Sebastian Dröge + + * gst/rtsp-server/rtsp-client.c: + rtsp-client: Fix handling of keep-alive GET_PARAMETER/SET_PARAMETER + While they logically have 0 bytes length, GstRTSPConnection is appending + a '\0' to everything making the size be 1 instead. + +2017-01-13 12:39:36 +0000 Tim-Philipp Müller + + * meson.build: + meson: bump version + +2017-01-12 19:04:23 +0200 Sebastian Dröge + + * gst/rtsp-server/rtsp-session.c: + rtsp-session: Only remove deprecated API if requested to do so, not just when disabling + gst_rtsp_session_is_expired() and gst_rtsp_session_next_timeout() were + affected. + +2017-01-12 16:32:59 +0200 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.11.1 === -2017-01-12 Sebastian Dröge +2017-01-12 16:14:46 +0200 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.11.1 + * gst-rtsp-server.doap: + * win32/common/libgstrtspserver.def: + Release 1.11.1 2017-01-10 08:34:50 +0100 Patricia Muscalu diff --git a/NEWS b/NEWS index a940f7b..ba794a2 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -This is GStreamer 1.11.1. +This is GStreamer 1.11.2. diff --git a/RELEASE b/RELEASE index d536918..a601960 100644 --- a/RELEASE +++ b/RELEASE @@ -1,7 +1,7 @@ -Release notes for GStreamer RTSP Server Library 1.11.1 +Release notes for GStreamer RTSP Server Library 1.11.2 -The GStreamer team is pleased to announce the first release of the unstable +The GStreamer team is pleased to announce the second release of the unstable 1.11 release series. The 1.11 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. The unstable 1.11 release series @@ -18,16 +18,6 @@ Binaries for Android, iOS, Mac OS X and Windows will be provided in the next day -Bugs fixed in this release - - * 758062 : rtsp-client: emit new rtsp request signals in the beginning of each request - * 771830 : There is no time out in idle connection RTSP server - * 774173 : media: emit signal SIGNAL_NEW_STATE only when state change happens - * 774640 : gst-rtsp-server: Enable building with MSVC - * 776867 : pkgconfig: fix -uninstalled pc file - * 777037 : rtsp-factory: just fixing a little typo in comments - * 774416 : RTSP digest Authentification for gst-rtsp-server - ==== Download ==== You can find source releases of gst-rtsp-server in the download @@ -63,19 +53,7 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Aleksandr Slobodeniuk - * Branko Subasic - * Dag Gullberg - * Edward Hervey - * Guillaume Desmottes - * Göran Jönsson * Jan Schmidt - * Kseniia Vasilchuk - * Matthew Waters - * Neha Arora - * Patricia Muscalu - * Scott D Phillips * Sebastian Dröge - * Thibault Saunier * Tim-Philipp Müller   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 82a57dc..1cffcba 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,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 RTSP Server Library], [1.11.1.1], +AC_INIT([GStreamer RTSP Server Library], [1.11.2], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer], [gst-rtsp-server]) AG_GST_INIT @@ -53,13 +53,13 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 1101, 0, 1101) +AS_LIBTOOL(GST, 1102, 0, 1102) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.11.1.1 -GSTPB_REQ=1.11.1.1 -GSTPG_REQ=1.11.1.1 -GSTPD_REQ=1.11.1.1 +GST_REQ=1.11.2 +GSTPB_REQ=1.11.2 +GSTPG_REQ=1.11.2 +GSTPD_REQ=1.11.2 dnl *** autotools stuff **** diff --git a/gst-rtsp-server.doap b/gst-rtsp-server.doap index 33fe0f8..09c746d 100644 --- a/gst-rtsp-server.doap +++ b/gst-rtsp-server.doap @@ -32,6 +32,16 @@ RTSP server library based on GStreamer + 1.11.2 + master + + 2017-02-24 + + + + + + 1.11.1 master -- 2.7.4