From 5d781f908f7a83dee31d522e41ca7a2beaa7904e Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 1 Dec 2005 19:15:26 +0000 Subject: releasing 0.9.7 Original commit message from CVS: releasing 0.9.7 --- ChangeLog | 7 +++++++ NEWS | 12 ++++++++++-- RELEASE | 9 +++------ common | 2 +- configure.ac | 6 +++--- examples/Makefile.am | 2 +- examples/bps.py | 2 +- examples/debugslider.py | 2 +- examples/f2f.py | 2 +- examples/gstfile.py | 2 +- examples/pipeline-tester | 2 +- examples/play.py | 2 +- examples/sinkelement.py | 2 +- examples/vumeter.py | 2 +- gst/Makefile.am | 4 ++-- 15 files changed, 35 insertions(+), 23 deletions(-) diff --git a/ChangeLog b/ChangeLog index 65eadcdff2..f7902b7025 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +=== release 0.9.7 === + +2005-12-01 + + * configure.ac: + releasing 0.9.7, "Mon Chien N'a Pas De Nez" + 2005-12-01 Andy Wingo * configure.ac (GST_PLUGINS_BASE_LIBS): Check for diff --git a/NEWS b/NEWS index 078d08c677..b1f96a69c0 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ -This is GStreamer Python Bindings 0.9.6, -"We'll always have Paris. We got it back last night." +This is GStreamer Python Bindings 0.9.7, +"Mon Chien N'a Pas De Nez." + +Changes since 0.9.6: + + * Updates for API changes + +Bugs fixed since 0.9.6: + + * 322250 : Remove *_full wrappers Changes since 0.9.5: diff --git a/RELEASE b/RELEASE index 91110709f9..2fafb8c7e1 100644 --- a/RELEASE +++ b/RELEASE @@ -1,5 +1,5 @@ -GStreamer: Release notes for GStreamer Python bindings 0.9.6 "We'll always have Paris. We got it back last night." +GStreamer: Release notes for GStreamer Python bindings 0.9.7 "Mon Chien N'a Pas De Nez" The GStreamer team is petrified to announce a new release @@ -16,13 +16,11 @@ Features of this release * Parallel installability with 0.8.x series * Threadsafe design and API - * added FractionRange - * updated for API changes + * Updates for API changes Bugs fixed in this release - * 318793 : check whether new date/tag API needs wrapping - * 321839 : pipeline hangs in get_state after changing trival pipeline + * 322250 : Remove *_full wrappers Download @@ -54,6 +52,5 @@ Contributors to this release * Andy Wingo * Edward Hervey - * Jan Schmidt * Thomas Vander Stichele   \ No newline at end of file diff --git a/common b/common index 54bb21c57b..fe94837afc 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 54bb21c57bb86941d80c15590e0a121405173156 +Subproject commit fe94837afc0b10eaf867156fc29eea0073ba45df diff --git a/configure.ac b/configure.ac index 496f61cd5c..046c1abf28 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ dnl AM_MAINTAINER_MODE only provides the option to configure to enable it AM_MAINTAINER_MODE dnl when going to/from release please set the nano (fourth number) right ! -AS_VERSION(gst-python, PYGST_VERSION, 0, 9, 6, 1, +AS_VERSION(gst-python, PYGST_VERSION, 0, 9, 7, 0, GST_CVS="no", GST_CVS="yes") AM_INIT_AUTOMAKE($PACKAGE, $VERSION) @@ -27,7 +27,7 @@ dnl required versions of other packages AC_SUBST(PYGTK_REQ, 2.6.3) AC_SUBST(GLIB_REQ, 2.6.0) AC_SUBST(GTK_REQ, 2.6.0) -AC_SUBST(GST_REQ, 0.9.0) +AC_SUBST(GST_REQ, 0.9.7) AC_DISABLE_STATIC @@ -53,7 +53,7 @@ fi AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) dnl check for GStreamer -GST_MAJORMINOR=0.9 +GST_MAJORMINOR=0.10 AC_SUBST(GST_MAJORMINOR) PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ) AC_SUBST(GST_CFLAGS) diff --git a/examples/Makefile.am b/examples/Makefile.am index f7d0ca8445..4fa3e83b85 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,4 +1,4 @@ -examplesdir = $(pkgdatadir)/0.9/examples +examplesdir = $(pkgdatadir)/$(GST_MAJORMINOR)/examples examples_DATA = \ audio-controller.py \ bps.py \ diff --git a/examples/bps.py b/examples/bps.py index 495063db99..4ecd48daff 100755 --- a/examples/bps.py +++ b/examples/bps.py @@ -32,7 +32,7 @@ import gobject import gtk import pygst -pygst.require('0.9') +pygst.require('0.10') import gst diff --git a/examples/debugslider.py b/examples/debugslider.py index d544e72da1..16aee5146a 100644 --- a/examples/debugslider.py +++ b/examples/debugslider.py @@ -27,7 +27,7 @@ from gtk import gdk import gobject import pygst -pygst.require('0.9') +pygst.require('0.10') import gst class DebugSlider(gtk.HScale): diff --git a/examples/f2f.py b/examples/f2f.py index 4fb5614f3e..8513341253 100755 --- a/examples/f2f.py +++ b/examples/f2f.py @@ -26,7 +26,7 @@ import sys import pygst -pygst.require('0.9') +pygst.require('0.10') import gst diff --git a/examples/gstfile.py b/examples/gstfile.py index 043f45dfa3..a38a19261d 100644 --- a/examples/gstfile.py +++ b/examples/gstfile.py @@ -17,7 +17,7 @@ import sys import gobject import pygst -pygst.require('0.9') +pygst.require('0.10') import gst diff --git a/examples/pipeline-tester b/examples/pipeline-tester index 63c11d7de4..5cd99d731c 100755 --- a/examples/pipeline-tester +++ b/examples/pipeline-tester @@ -32,7 +32,7 @@ import pango import gobject import pygst -pygst.require('0.9') +pygst.require('0.10') import gst import debugslider diff --git a/examples/play.py b/examples/play.py index 57707767b4..c3137e7e7d 100644 --- a/examples/play.py +++ b/examples/play.py @@ -10,7 +10,7 @@ import sys import gobject import pygst -pygst.require('0.9') +pygst.require('0.10') import gst import gst.interfaces import gtk diff --git a/examples/sinkelement.py b/examples/sinkelement.py index df2bb6e7c0..40e1c6ea2b 100644 --- a/examples/sinkelement.py +++ b/examples/sinkelement.py @@ -13,7 +13,7 @@ # messages import pygst -pygst.require('0.9') +pygst.require('0.10') import gst import gobject diff --git a/examples/vumeter.py b/examples/vumeter.py index 57899e93c4..d1ce5b668b 100755 --- a/examples/vumeter.py +++ b/examples/vumeter.py @@ -30,7 +30,7 @@ import gtk import gobject import pygst -pygst.require('0.9') +pygst.require('0.10') import gst import fvumeter diff --git a/gst/Makefile.am b/gst/Makefile.am index cf1a49d4e7..14b05c5362 100644 --- a/gst/Makefile.am +++ b/gst/Makefile.am @@ -16,7 +16,7 @@ interface_lib = interfaces.la defs_DATA = gst-types.defs \ gst-extrafuncs.defs \ libs.defs -defsdir = $(pkgdatadir)/0.9/defs +defsdir = $(pkgdatadir)/$(GST_MAJORMINOR)/defs noinst_HEADERS = common.h pygstvalue.h pygstminiobject.h pygstobject.h pygstexception.h @@ -64,7 +64,7 @@ gst.c: $(GST_DEFS) $(GST_OVERRIDES) $(GEN_FILES) # GStreamer interfaces bindings interfaces_la_CFLAGS = $(common_cflags) $(GST_PLUGINS_BASE_CFLAGS) -interfaces_la_LIBADD = $(common_libadd) -lgstinterfaces-0.9 +interfaces_la_LIBADD = $(common_libadd) -lgstinterfaces-$(GST_MAJORMINOR) interfaces_la_LDFLAGS = $(common_ldflags) -export-symbols-regex initinterface $(GST_PLUGINS_BASE_LIBS) interfaces_la_SOURCES = interfacesmodule.c nodist_interfaces_la_SOURCES = interfaces.c -- cgit v1.2.3-70-g09d2