From: Moritz Bunkus Date: Mon, 25 Sep 2017 18:22:37 +0000 (+0200) Subject: bumped version number, added release message X-Git-Tag: release-1.4.8^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5831b6e1650d9e7a8a78092a4cd72cd086dc227;p=libmatroska bumped version number, added release message --- diff --git a/ChangeLog b/ChangeLog index c37383f..bc1bfcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2017-09-25 Moritz Bunkus + * Released v1.4.8. + * KaxBlockGroup, KaxSimpleBlock: fixed writing the block header if the track number is 128. diff --git a/configure.ac b/configure.ac index 838c144..00d2e39 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libmatroska], [1.4.7]) +AC_INIT([libmatroska], [1.4.8]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/libmatroska.proj b/libmatroska.proj index a79f429..d75d8ce 100644 --- a/libmatroska.proj +++ b/libmatroska.proj @@ -5,7 +5,7 @@ CONFIG_FILE config.h { NO_INCLUDE . } GROUP libmatroska_coremake_automake { // from automake - DEFINE HAVE_CONFIG_H // from CONFIG_HEADERS + DEFINE HAVE_CONFIG_H // from CONFIG_HEADERS NO_STDAFX . NO_PROJECT . HEADER config.h @@ -13,7 +13,7 @@ GROUP libmatroska_coremake_automake LIB matroska { - PROJECT_VERSION 1.4.7 + PROJECT_VERSION 1.4.8 USE libmatroska_coremake_automake INCLUDE . diff --git a/matroska/KaxVersion.h b/matroska/KaxVersion.h index 56d8626..25255a8 100644 --- a/matroska/KaxVersion.h +++ b/matroska/KaxVersion.h @@ -40,7 +40,7 @@ START_LIBMATROSKA_NAMESPACE -#define LIBMATROSKA_VERSION 0x010407 +#define LIBMATROSKA_VERSION 0x010408 extern const std::string KaxCodeVersion; extern const std::string KaxCodeDate; diff --git a/src/KaxVersion.cpp b/src/KaxVersion.cpp index 5c999ed..4c05691 100644 --- a/src/KaxVersion.cpp +++ b/src/KaxVersion.cpp @@ -37,7 +37,7 @@ START_LIBMATROSKA_NAMESPACE -const std::string KaxCodeVersion = "1.4.7"; +const std::string KaxCodeVersion = "1.4.8"; // 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