diff --git a/ChangeLog b/ChangeLog index 65eadcdff28d32e0ffd465bf70adc5ab2f789b16..f7902b7025876b6e3be7854abf14870f589221d2 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 078d08c677ff4cfa0bbf3223c77ac2d5d2a4f281..b1f96a69c005526f9637c12bc018dd943309c302 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 91110709f95328caaef494e5faee321e30e4e87c..2fafb8c7e15143adf0700c951eb14dc352406ea6 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 54bb21c57bb86941d80c15590e0a121405173156..fe94837afc0b10eaf867156fc29eea0073ba45df 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 54bb21c57bb86941d80c15590e0a121405173156 +Subproject commit fe94837afc0b10eaf867156fc29eea0073ba45df diff --git a/configure.ac b/configure.ac index 496f61cd5c5ad92f8bbd5c1e8c0a8cbdca7337af..046c1abf28962e46c35fcacb9663072aef7a2b19 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 f7d0ca84457caae67df25cb40ae4fbce1cc586f0..4fa3e83b8548d1bb77ec610da0de97dd972ccc19 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 495063db99f9f386d85fd0b7941cad5079e0c490..4ecd48dafff0531b009d0ca72d730a8464b3f457 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 d544e72da187fde85187dd4a45a1a1778e901f6e..16aee5146acc94e994369ec1bf301764257e749a 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 4fb5614f3ec9345dd364b3456ea9f2e38d16e0a3..85133412532b2e61da75bed46ff2d9794d7b61d3 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 043f45dfa39996faf007d127689c69ac0c52cd7f..a38a19261d4027903f4acb1911d785ec3e47c4f8 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 63c11d7de4a706fd9db18eefa328adb739957af6..5cd99d731c90ec71423e754cb62c6f69dd5ce0c3 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 57707767b440988c7a211841765878c2beaf1519..c3137e7e7da859f4b0edc3231de0ac9e0607d14c 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 df2bb6e7c067634cef5fa071ab7d5ebc47c7adfb..40e1c6ea2b5bc876d4d18ab73790d7d1f48b3628 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 57899e93c4e76baf9b195d2df52803f83b96c513..d1ce5b668bb70fb60a9fff36738274e287d79b84 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 cf1a49d4e758d83199a5466fa5819a8327d93010..14b05c53622ff1ec698a752e0534f91d3fb5758f 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