]> git.sesse.net Git - mlt/commitdiff
set version to 0.8.0
authorDan Dennedy <dan@dennedy.org>
Fri, 1 Jun 2012 20:50:42 +0000 (13:50 -0700)
committerDan Dennedy <dan@dennedy.org>
Fri, 1 Jun 2012 20:50:42 +0000 (13:50 -0700)
Doxyfile
configure
docs/melt.1
src/framework/mlt_version.h
src/modules/avformat/configure

index 37e14b50800bbd0a30fc5cb3dab0e1cfb1df20e5..4f59abd83e81f1ef42621dbcc5be230b31ff6cb0 100644 (file)
--- 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. 
index 8ae178f0717c8d92627004441b0918c25bfa3586..e8c192d5d6761575d6bc6c15085c9910b08a8bec 100755 (executable)
--- 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()
index 44ab153554db16302ff031880c0d80813372c5ec..9c0366c195e63e7075b8b364aca1ef1bb81060e5 100644 (file)
@@ -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
index b275c941c7d916af040b66082f8b506490661330..1bef19d275249489cdc1bc8bad0f595a0434701e 100644 (file)
@@ -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)
 
index 5e3a7a245da00950d4e7c9e5c1d047025b998260..c64cec83092b11f6e72b94567d95b6fc58f60b7b 100755 (executable)
@@ -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"