mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-02 09:51:11 +00:00
Handle release version and API version separate and bump both
This commit is contained in:
parent
a0c4aaca82
commit
3af7bf2ef5
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
AC_INIT(gstreamer-sharp, 0.9.0,
|
||||
AC_INIT(gstreamer-sharp, 0.9.0.1,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer&component=gst-sharp,
|
||||
gstreamer-sharp)
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
@ -14,6 +14,9 @@ AC_HEADER_STDC
|
|||
PACKAGE_VERSION=gstreamer-sharp-0.10
|
||||
AC_SUBST(PACKAGE_VERSION)
|
||||
|
||||
API_VERSION=0.9.1.0
|
||||
AC_SUBST(API_VERSION)
|
||||
|
||||
MONO_REQUIRED_VERSION=2.4
|
||||
AC_SUBST(MONO_REQUIRED_VERSION)
|
||||
PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly:AssemblyVersion ("@VERSION@") ]
|
||||
[assembly:AssemblyVersion ("@API_VERSION@") ]
|
||||
[assembly:AssemblyDelaySign (false) ]
|
||||
[assembly:AssemblyKeyFile ("gstreamer-sharp.snk") ]
|
||||
|
|
Loading…
Reference in a new issue