diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2009-01-19 23:18:26 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2009-01-19 23:18:26 +0000 |
commit | 3e811faefc7117320695cbf4c0d8b34a448cb10c (patch) | |
tree | e78bf1aadf4d18d5c2cb16b7a4acb54a1b3a509d | |
parent | 22b9ffd6d720f0005e98202e122da9cd1af8d814 (diff) |
Release 0.10.14
Original commit message from CVS:
Release 0.10.14
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | RELEASE | 27 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | gst-python.doap | 11 |
5 files changed, 56 insertions, 12 deletions
@@ -1,3 +1,10 @@ +=== release 0.10.14 === + +2009-01-19 Jan Schmidt <jan.schmidt@sun.com> + + * configure.ac: + releasing 0.10.14, "you better think" + 2009-01-09 Jan Schmidt <jan.schmidt@sun.com> * configure.ac: @@ -1,4 +1,23 @@ -This is GStreamer Python Bindings 0.10.13, "Feel The Sun Rise" +This is GStreamer Python Bindings 0.10.14, "You Better Think" + +Changes since 0.10.13: + + * Handle keep-refcount for GBoxed arguments + * Mark gst.message* that take ownership of the gst.Structure/gst.TagList + * Wrap new API in Core and Base + * Various other bug fixes and improvements + +Bugs fixed since 0.10.13: + + * 543961 : Memory leak in gst.Bin.do_handle_message + * 553131 : Import modules in correct order + * 553134 : Assumes wrong RTLD constants for Linux/MIPS + * 554545 : gst.Pad methods that return a new buffer as function argu... + * 556054 : codegen: Add 'keep-refcount' handling for GBoxed arguments + * 559406 : Add proxy for gst_base_transform_transform_size + * 559768 : Fix gst-python on systems that don't support RTLD_GLOBAL ... + * 564580 : Memory leak in gst.Structure.keys() + * 566903 : gst.Pad.iterate_internal_links may raise critical warning... Changes since 0.10.12: @@ -1,5 +1,5 @@ -Release notes for GStreamer Python bindings 0.10.13 "Feel The Sun Rise" +Release notes for GStreamer Python bindings 0.10.14 "you better think" @@ -17,20 +17,22 @@ It is, however, parallel installable with the 0.8.x series. Features of this release - * Updated for GStreamer 0.10.21 API - * New examples - * Fix double import issues on OS/X - * Bug fixes + * Handle keep-refcount for GBoxed arguments + * Mark gst.message* that take ownership of the gst.Structure/gst.TagList + * Wrap new API in Core and Base + * Various other bug fixes and improvements Bugs fixed in this release + * 543961 : Memory leak in gst.Bin.do_handle_message * 553131 : Import modules in correct order * 553134 : Assumes wrong RTLD constants for Linux/MIPS - * 461838 : Fails to build on Mac OS X i686 with multiply defined sym... - * 517993 : pipeline-tester should not be hardcoded to ALSA - * 540221 : Empty GstMiniObject GValues raise a SystemError - * 546689 : Add GST_DEBUG_BIN_TO_DOT_FILE* to python bindings - * 549450 : caps.append_structure() gives warnings if structure is no... + * 554545 : gst.Pad methods that return a new buffer as function argu... + * 556054 : codegen: Add 'keep-refcount' handling for GBoxed arguments + * 559406 : Add proxy for gst_base_transform_transform_size + * 559768 : Fix gst-python on systems that don't support RTLD_GLOBAL ... + * 564580 : Memory leak in gst.Structure.keys() + * 566903 : gst.Pad.iterate_internal_links may raise critical warning... Download @@ -60,6 +62,11 @@ Applications Contributors to this release + * Alessandro Decina + * Alexander Wirt * Edward Hervey * Jan Schmidt + * Sebastian Dröge + * Thiemo Seufer + * Vincent GENIEUX
\ No newline at end of file diff --git a/configure.ac b/configure.ac index 733bf30..a242b71 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ(2.52) 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 Python Bindings, 0.10.13.3, +AC_INIT(GStreamer Python Bindings, 0.10.14, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gst-python) diff --git a/gst-python.doap b/gst-python.doap index 2467df0..51f5ed9 100644 --- a/gst-python.doap +++ b/gst-python.doap @@ -35,6 +35,17 @@ It also comes with a number of examples. <release> <Version> + <revision>0.10.14</revision> + <branch>0.10</branch> + <name>You Better Think</name> + <created>2009-01-19</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.14.tar.bz2" /> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.14.tar.gz" /> + </Version> + </release> + + <release> + <Version> <revision>0.10.13</revision> <branch>0.10</branch> <name>Feel The Sun Rise</name> |