From: Moritz Bunkus Date: Sat, 24 Sep 2022 20:12:13 +0000 (+0200) Subject: bump version number to v1.7.0 X-Git-Tag: release-1.7.0~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd783028013af52c0fd81b31a5cac2aa6f975c49;p=libmatroska bump version number to v1.7.0 Even though the number had already been bumped to 1.6.4 after the last release, all the changes in this release might need adjustments in the applications using them for writing files, even though the libraries should still be API and ABI backwards compatible. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 13d2ddb..ebeed16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1.2) -project(matroska VERSION 1.6.4) +project(matroska VERSION 1.7.0) option(DISABLE_PKGCONFIG "Disable PkgConfig module generation" OFF) option(DISABLE_CMAKE_CONFIG "Disable CMake package config module generation" OFF) diff --git a/matroska/KaxBlock.h b/matroska/KaxBlock.h index bc56d4a..2c45da7 100644 --- a/matroska/KaxBlock.h +++ b/matroska/KaxBlock.h @@ -266,7 +266,7 @@ class MATROSKA_DLL_API KaxInternalBlock : public EbmlBinary { /*! * \return Get the timestamp as written in the Block (not scaled). - * \since LIBMATROSKA_VERSION >= 0x010604 + * \since LIBMATROSKA_VERSION >= 0x010700 */ int16 GetRelativeTimestamp() const { return LocalTimecode; } diff --git a/matroska/KaxVersion.h b/matroska/KaxVersion.h index 575067d..8367838 100644 --- a/matroska/KaxVersion.h +++ b/matroska/KaxVersion.h @@ -40,7 +40,7 @@ namespace libmatroska { -#define LIBMATROSKA_VERSION 0x010604 +#define LIBMATROSKA_VERSION 0x010700 extern const MATROSKA_DLL_API std::string KaxCodeVersion; extern const MATROSKA_DLL_API std::string KaxCodeDate; diff --git a/src/KaxVersion.cpp b/src/KaxVersion.cpp index c148442..b47a6a8 100644 --- a/src/KaxVersion.cpp +++ b/src/KaxVersion.cpp @@ -37,7 +37,7 @@ namespace libmatroska { -const std::string KaxCodeVersion = "1.6.4"; +const std::string KaxCodeVersion = "1.7.0"; // Up to version 1.4.4 this library exported a build date string. As // this made the build non-reproducible, replace it by a placeholder to