From: Dan Dennedy Date: Fri, 1 Jun 2012 20:50:42 +0000 (-0700) Subject: set version to 0.8.0 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d0545d6b1b188462c9b04edeb20477c1c28a5c5b;p=mlt set version to 0.8.0 --- diff --git a/Doxyfile b/Doxyfile index 37e14b50..4f59abd8 100644 --- a/Doxyfile +++ b/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = mlt # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.7.8 +PROJECT_NUMBER = 0.8.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/configure b/configure index 8ae178f0..e8c192d5 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #!/bin/sh -export version=0.7.9 +export version=0.8.0 export soversion=5 show_help() diff --git a/docs/melt.1 b/docs/melt.1 index 44ab1535..9c0366c1 100644 --- a/docs/melt.1 +++ b/docs/melt.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.4. -.TH MELT "1" "February 2012" "melt 0.7.8" "User Commands" +.TH MELT "1" "June 2012" "melt 0.8.0" "User Commands" .SH NAME melt \- author, play, and encode multitrack audio/video compositions .SH SYNOPSIS diff --git a/src/framework/mlt_version.h b/src/framework/mlt_version.h index b275c941..1bef19d2 100644 --- a/src/framework/mlt_version.h +++ b/src/framework/mlt_version.h @@ -28,8 +28,8 @@ #define STRINGIZE(s) STRINGIZE2(s) #define LIBMLT_VERSION_MAJOR 0 -#define LIBMLT_VERSION_MINOR 7 -#define LIBMLT_VERSION_REVISION 9 +#define LIBMLT_VERSION_MINOR 8 +#define LIBMLT_VERSION_REVISION 0 #define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION) #define LIBMLT_VERSION STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION) diff --git a/src/modules/avformat/configure b/src/modules/avformat/configure index 5e3a7a24..c64cec83 100755 --- a/src/modules/avformat/configure +++ b/src/modules/avformat/configure @@ -3,8 +3,8 @@ # Determine whether to recommend/use the HEAD revision of FFmpeg (unreleased) # or a specific revision based upon whether the last digit of our version # is even or odd. An odd MLT version number always represents unreleased. -ffmpeg_ver="0.8" -libav_ver="0.7" +ffmpeg_ver="0.9.2" +libav_ver="0.8.2" micro_version=$(echo $version | cut -d . -f 3) odd_version=$(($micro_version % 2)) [ "$odd_version" -eq "1" ] && ffmpeg_ver="HEAD" && libav_ver="HEAD"