mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Release 1.10.0
This commit is contained in:
parent
d680386ab0
commit
1581310200
5 changed files with 1170 additions and 13 deletions
35
ChangeLog
35
ChangeLog
|
@ -1,9 +1,38 @@
|
||||||
=== release 1.9.90 ===
|
=== release 1.10.0 ===
|
||||||
|
|
||||||
2016-09-30 Sebastian Dröge <slomo@coaxion.net>
|
2016-11-01 Sebastian Dröge <slomo@coaxion.net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
releasing 1.9.90
|
releasing 1.10.0
|
||||||
|
|
||||||
|
2016-10-19 14:47:01 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||||
|
|
||||||
|
* meson.build:
|
||||||
|
meson: use the version keyword argument for dependencies version
|
||||||
|
|
||||||
|
2016-10-17 09:37:30 +0200 Marianna Smidth Buschle <msb@qtec.com>
|
||||||
|
|
||||||
|
* examples/plugins/python/identity.py:
|
||||||
|
examples: Added identity example
|
||||||
|
Created a simple BaseTransform element (identity)
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=772853
|
||||||
|
|
||||||
|
2016-09-30 11:35:42 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||||
|
|
||||||
|
* hooks/pre-commit.hook:
|
||||||
|
* meson.build:
|
||||||
|
meson: Setup pre-commit hooks when configuring
|
||||||
|
|
||||||
|
=== release 1.9.90 ===
|
||||||
|
|
||||||
|
2016-09-30 13:04:26 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* ChangeLog:
|
||||||
|
* NEWS:
|
||||||
|
* RELEASE:
|
||||||
|
* configure.ac:
|
||||||
|
* gst-python.doap:
|
||||||
|
Release 1.9.90
|
||||||
|
|
||||||
2016-09-14 15:18:17 +0200 Sebastian Dröge <sebastian@centricular.com>
|
2016-09-14 15:18:17 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
|
20
RELEASE
20
RELEASE
|
@ -1,16 +1,22 @@
|
||||||
|
|
||||||
Release notes for GStreamer Python bindings 1.9.90
|
Release notes for GStreamer Python bindings 1.10.0
|
||||||
|
|
||||||
The GStreamer team is pleased to announce the first release candidate of the
|
The GStreamer team is pleased to announce the first release of the new stable
|
||||||
stable 1.10 release series. The 1.10 release series is adding new features on
|
1.10 release series. The 1.10 release series is adding new features on top of
|
||||||
top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and
|
the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and ABI-stable 1.x
|
||||||
ABI-stable 1.x release series of the GStreamer multimedia framework.
|
release series of the GStreamer multimedia framework.
|
||||||
|
|
||||||
|
|
||||||
Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days.
|
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly after
|
||||||
|
the source release by the GStreamer project during the stable 1.10 release
|
||||||
|
series.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Bugs fixed in this release
|
||||||
|
|
||||||
|
* 772853 : example of python identity element for 1.0
|
||||||
|
|
||||||
==== Download ====
|
==== Download ====
|
||||||
|
|
||||||
You can find source releases of gst-python in the download
|
You can find source releases of gst-python in the download
|
||||||
|
@ -46,6 +52,6 @@ subscribe to the gstreamer-devel list.
|
||||||
|
|
||||||
Contributors to this release
|
Contributors to this release
|
||||||
|
|
||||||
* Sebastian Dröge
|
* Marianna Smidth Buschle
|
||||||
* Thibault Saunier
|
* Thibault Saunier
|
||||||
|
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.68])
|
||||||
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 GObject Introspection overrides for Python , 1.9.90,
|
AC_INIT(GStreamer GObject Introspection overrides for Python , 1.10.0,
|
||||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||||
gst-python)
|
gst-python)
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
||||||
|
|
||||||
dnl required versions of other packages
|
dnl required versions of other packages
|
||||||
dnl Note that they are runtime requirements
|
dnl Note that they are runtime requirements
|
||||||
AC_SUBST(GST_REQ, 1.9.90)
|
AC_SUBST(GST_REQ, 1.10.0)
|
||||||
AC_SUBST(PYGOBJECT_REQ, 3.0)
|
AC_SUBST(PYGOBJECT_REQ, 3.0)
|
||||||
|
|
||||||
AC_DISABLE_STATIC
|
AC_DISABLE_STATIC
|
||||||
|
|
|
@ -30,6 +30,15 @@ GStreamer Python Bindings is a set of overrides and Gst fundamental types handli
|
||||||
</GitRepository>
|
</GitRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>1.10.0</revision>
|
||||||
|
<branch>master</branch>
|
||||||
|
<created>2016-11-01</created>
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-1.10.0.tar.xz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>1.9.90</revision>
|
<revision>1.9.90</revision>
|
||||||
|
|
Loading…
Reference in a new issue