Bump version number, add release message

This commit is contained in:
Moritz Bunkus 2015-10-20 15:05:13 +02:00
parent 88409e2a94
commit 580add661f
4 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2015-10-20 Moritz Bunkus <moritz@bunkus.org>
* Released v1.3.3.
* EbmlMaster::Read(): When the parser encountered a deeply nested
element with an infinite size then a following element of an upper
level was not propagated correctly. Instead the element with the

View File

@ -1,4 +1,4 @@
AC_INIT([libebml], [1.3.2])
AC_INIT([libebml], [1.3.3])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])

View File

@ -42,7 +42,7 @@
START_LIBEBML_NAMESPACE
#define LIBEBML_VERSION 0x010301
#define LIBEBML_VERSION 0x010303
extern const std::string EbmlCodeVersion;
extern const std::string EbmlCodeDate;

View File

@ -38,7 +38,7 @@
START_LIBEBML_NAMESPACE
const std::string EbmlCodeVersion = "1.3.2";
const std::string EbmlCodeVersion = "1.3.3";
const std::string EbmlCodeDate = __TIMESTAMP__;
END_LIBEBML_NAMESPACE