mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
Release 1.9.90
This commit is contained in:
parent
a7eebda2ae
commit
329c3faf90
5 changed files with 76 additions and 14 deletions
61
ChangeLog
61
ChangeLog
|
@ -1,9 +1,64 @@
|
|||
=== release 1.9.2 ===
|
||||
=== release 1.9.90 ===
|
||||
|
||||
2016-09-01 Sebastian Dröge <slomo@coaxion.net>
|
||||
2016-09-30 Sebastian Dröge <slomo@coaxion.net>
|
||||
|
||||
* configure.ac:
|
||||
releasing 1.9.2
|
||||
releasing 1.9.90
|
||||
|
||||
2016-09-14 15:18:17 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* pythondetector:
|
||||
meson: Add a workaround for finding the Python library on Fedora
|
||||
|
||||
2016-09-14 11:42:54 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* pythondetector:
|
||||
meson: Fix pythondetector on Debian and use sysconfig for getting the ABIFLAGS too
|
||||
Paths like /usr/lib/python3.5/config-3.5m-x86_64-linux-gnu would not be
|
||||
detected by the old code, but it's all nicely stored in sysconfig so
|
||||
let's just use that.
|
||||
|
||||
2016-09-14 11:31:32 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* configure.ac:
|
||||
configure: Depend on gstreamer 1.9.2.1
|
||||
|
||||
2016-09-13 15:17:41 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* pythondetector:
|
||||
meson: Search python shared lib in lib64/ if it is a directory
|
||||
|
||||
2016-09-05 12:52:46 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* plugin/gstpythonplugin.c:
|
||||
build: Remove unused variables
|
||||
|
||||
2016-09-05 11:30:43 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* config.h.meson:
|
||||
* gi/meson.build:
|
||||
* gi/overrides/meson.build:
|
||||
* meson.build:
|
||||
* plugin/meson.build:
|
||||
* pythondetector:
|
||||
Add support for Meson as alternative/parallel build system
|
||||
https://github.com/mesonbuild/meson
|
||||
|
||||
2016-09-01 12:31:53 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* configure.ac:
|
||||
Back to development
|
||||
|
||||
=== release 1.9.2 ===
|
||||
|
||||
2016-09-01 12:31:42 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* gst-python.doap:
|
||||
Release 1.9.2
|
||||
|
||||
2016-07-06 13:54:19 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
|
|
2
NEWS
2
NEWS
|
@ -1 +1 @@
|
|||
This is GStreamer 1.9.2
|
||||
This is GStreamer 1.9.90
|
||||
|
|
14
RELEASE
14
RELEASE
|
@ -1,13 +1,10 @@
|
|||
|
||||
Release notes for GStreamer Python bindings 1.9.2
|
||||
Release notes for GStreamer Python bindings 1.9.90
|
||||
|
||||
The GStreamer team is pleased to announce the second release of the unstable
|
||||
1.9 release series, which marks the feature freeze for 1.10. The 1.9 release
|
||||
series is adding new features on top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series
|
||||
and is part of the API and ABI-stable 1.x release series of the GStreamer
|
||||
multimedia framework. The unstable 1.9 release series will lead to the stable
|
||||
1.10 release series in the next weeks. Any newly added API can still change
|
||||
until that point.
|
||||
The GStreamer team is pleased to announce the first release candidate of the
|
||||
stable 1.10 release series. The 1.10 release series is adding new features on
|
||||
top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and
|
||||
ABI-stable 1.x release series of the GStreamer multimedia framework.
|
||||
|
||||
|
||||
Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days.
|
||||
|
@ -50,4 +47,5 @@ subscribe to the gstreamer-devel list.
|
|||
Contributors to this release
|
||||
|
||||
* Sebastian Dröge
|
||||
* Thibault Saunier
|
||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.68])
|
|||
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 GObject Introspection overrides for Python , 1.9.2.1,
|
||||
AC_INIT(GStreamer GObject Introspection overrides for Python , 1.9.90,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-python)
|
||||
|
||||
|
@ -38,7 +38,7 @@ AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
|||
|
||||
dnl required versions of other packages
|
||||
dnl Note that they are runtime requirements
|
||||
AC_SUBST(GST_REQ, 1.9.2.1)
|
||||
AC_SUBST(GST_REQ, 1.9.90)
|
||||
AC_SUBST(PYGOBJECT_REQ, 3.0)
|
||||
|
||||
AC_DISABLE_STATIC
|
||||
|
|
|
@ -30,6 +30,15 @@ GStreamer Python Bindings is a set of overrides and Gst fundamental types handli
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.9.90</revision>
|
||||
<branch>master</branch>
|
||||
<created>2016-09-30</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-1.9.90.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.9.2</revision>
|
||||
|
|
Loading…
Reference in a new issue