diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-01 19:15:26 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-01 19:15:26 +0000 |
commit | 5d781f908f7a83dee31d522e41ca7a2beaa7904e (patch) | |
tree | 45275b24c75bed629ab7f6c9ab5dedfaf7ba3a2f | |
parent | 3e68928bdd802e540de046ddc167c15ddf88624b (diff) |
releasing 0.9.7RELEASE-0_9_7
Original commit message from CVS:
releasing 0.9.7
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | RELEASE | 9 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | examples/Makefile.am | 2 | ||||
-rwxr-xr-x | examples/bps.py | 2 | ||||
-rw-r--r-- | examples/debugslider.py | 2 | ||||
-rwxr-xr-x | examples/f2f.py | 2 | ||||
-rw-r--r-- | examples/gstfile.py | 2 | ||||
-rwxr-xr-x | examples/pipeline-tester | 2 | ||||
-rw-r--r-- | examples/play.py | 2 | ||||
-rw-r--r-- | examples/sinkelement.py | 2 | ||||
-rwxr-xr-x | examples/vumeter.py | 2 | ||||
-rw-r--r-- | gst/Makefile.am | 4 |
15 files changed, 34 insertions, 22 deletions
@@ -1,3 +1,10 @@ +=== release 0.9.7 === + +2005-12-01 <thomas (at) apestaart (dot) org> + + * configure.ac: + releasing 0.9.7, "Mon Chien N'a Pas De Nez" + 2005-12-01 Andy Wingo <wingo@pobox.com> * configure.ac (GST_PLUGINS_BASE_LIBS): Check for @@ -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: @@ -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 -Subproject 54bb21c57bb86941d80c15590e0a12140517315 +Subproject fe94837afc0b10eaf867156fc29eea0073ba45d diff --git a/configure.ac b/configure.ac index 496f61c..046c1ab 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 f7d0ca8..4fa3e83 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 495063d..4ecd48d 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 d544e72..16aee51 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 4fb5614..8513341 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 043f45d..a38a192 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 63c11d7..5cd99d7 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 5770776..c3137e7 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 df2bb6e..40e1c6e 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 57899e9..d1ce5b6 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 cf1a49d..14b05c5 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 |