Skip to content

Commit

Permalink
version 6.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Aug 1, 2020
1 parent 2223ce7 commit f6e57f2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project(MLT)
set(MLT_VERSION 6.22.0)
set(MLT_VERSION 6.22.1)
cmake_minimum_required(VERSION 3.10)
find_package(PkgConfig REQUIRED)
include(GNUInstallDirs)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 6.22.0
PROJECT_NUMBER = 6.22.1

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
7 changes: 6 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
MLT Release Notes
-----------------

Version 6.22.1 - August 1, 2020

This patch version only fixes the version reported in the CMake build.


Version 6.22.0 - July 30, 2020

This version fixes bugs associate with the preview scaling introduced in the
This version fixes bugs associated with the preview scaling introduced in the
previous version.

Framework
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

export version=6.22.0
export version=6.22.1
export soversion=6

show_help()
Expand Down
2 changes: 1 addition & 1 deletion docs/melt.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.4.
.TH MELT "1" "July 2020" "melt 6.22.0" "User Commands"
.TH MELT "1" "August 2020" "melt 6.22.1" "User Commands"
.SH NAME
melt \- author, play, and encode multitrack audio/video compositions
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion src/framework/mlt_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

#define LIBMLT_VERSION_MAJOR 6
#define LIBMLT_VERSION_MINOR 22
#define LIBMLT_VERSION_REVISION 0
#define LIBMLT_VERSION_REVISION 1
#define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION)
#define LIBMLT_VERSION MLT_STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)

Expand Down

0 comments on commit f6e57f2

Please sign in to comment.