Bump version after releases

This commit is contained in:
Tim-Philipp Müller 2012-02-23 10:36:57 +00:00
parent 31861969a9
commit 911f072f4c
7 changed files with 18 additions and 10 deletions

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.60)
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, git and prerelease does Werror too
AC_INIT(GStreamer, 0.10.35.1,
AC_INIT(GStreamer, 0.10.36.1,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer)
AG_GST_INIT

View file

@ -27,6 +27,7 @@ GObject
GstTypeFindElement
GstValve
GstIndex
GstFileIndex
GstMemIndex
GstPad
GstPadTemplate

View file

@ -3,7 +3,7 @@
<description>standard GStreamer elements</description>
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
<basename>libgstcoreelements.so</basename>
<version>0.10.35.1</version>
<version>0.10.36.1</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer git</package>
@ -331,4 +331,4 @@
</pads>
</element>
</elements>
</plugin>
</plugin>

View file

@ -3,11 +3,11 @@
<description>GStreamer core indexers</description>
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
<basename>libgstcoreindexers.so</basename>
<version>0.10.35.1</version>
<version>0.10.36.1</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer git</package>
<origin>Unknown package origin</origin>
<elements>
</elements>
</plugin>
</plugin>

View file

@ -65,7 +65,7 @@
#define GST_PACKAGE_ORIGIN "Unknown package origin"
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
#define GST_PACKAGE_RELEASE_DATETIME "2011-06-18T12:45Z"
#define GST_PACKAGE_RELEASE_DATETIME "2012-02-23T10:04Z"
/* location of the installed gst-plugin-scanner */
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
@ -256,6 +256,9 @@
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/poll.h> header file. */
#undef HAVE_SYS_POLL_H
/* Define to 1 if you have the <sys/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H
@ -340,7 +343,7 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer 0.10.35.1"
#define PACKAGE_STRING "GStreamer 0.10.36.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
@ -349,7 +352,7 @@
#undef PACKAGE_URL
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.10.35.1"
#define PACKAGE_VERSION "0.10.36.1"
/* directory where plugins are located */
#ifdef _DEBUG
@ -380,7 +383,7 @@
#undef USE_POISONING
/* Version number of package */
#define VERSION "0.10.35.1"
#define VERSION "0.10.36.1"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */

View file

@ -84,6 +84,7 @@ gst_buffer_copy_flags_get_type (void)
{C_FLAGS (GST_BUFFER_COPY_TIMESTAMPS), "GST_BUFFER_COPY_TIMESTAMPS",
"timestamps"},
{C_FLAGS (GST_BUFFER_COPY_CAPS), "GST_BUFFER_COPY_CAPS", "caps"},
{C_FLAGS (GST_BUFFER_COPY_QDATA), "GST_BUFFER_COPY_QDATA", "qdata"},
{0, NULL, NULL}
};
@ -160,6 +161,7 @@ gst_caps_flags_get_type (void)
{
static gsize id = 0;
static const GFlagsValue values[] = {
{C_FLAGS (GST_CAPS_FLAGS_NONE), "GST_CAPS_FLAGS_NONE", "none"},
{C_FLAGS (GST_CAPS_FLAGS_ANY), "GST_CAPS_FLAGS_ANY", "any"},
{0, NULL, NULL}
};
@ -1475,6 +1477,7 @@ gst_alloc_trace_flags_get_type (void)
{
static gsize id = 0;
static const GFlagsValue values[] = {
{C_FLAGS (GST_ALLOC_TRACE_NONE), "GST_ALLOC_TRACE_NONE", "none"},
{C_FLAGS (GST_ALLOC_TRACE_LIVE), "GST_ALLOC_TRACE_LIVE", "live"},
{C_FLAGS (GST_ALLOC_TRACE_MEM_LIVE), "GST_ALLOC_TRACE_MEM_LIVE",
"mem-live"},
@ -1495,6 +1498,7 @@ gst_type_find_probability_get_type (void)
{
static gsize id = 0;
static const GEnumValue values[] = {
{C_ENUM (GST_TYPE_FIND_NONE), "GST_TYPE_FIND_NONE", "none"},
{C_ENUM (GST_TYPE_FIND_MINIMUM), "GST_TYPE_FIND_MINIMUM", "minimum"},
{C_ENUM (GST_TYPE_FIND_POSSIBLE), "GST_TYPE_FIND_POSSIBLE", "possible"},
{C_ENUM (GST_TYPE_FIND_LIKELY), "GST_TYPE_FIND_LIKELY", "likely"},

View file

@ -57,7 +57,7 @@ G_BEGIN_DECLS
*
* The micro version of GStreamer at compile time:
*/
#define GST_VERSION_MICRO (35)
#define GST_VERSION_MICRO (36)
/**
* GST_VERSION_NANO:
*