Bump version number, add release message

This commit is contained in:
Moritz Bunkus 2015-10-17 15:47:22 +02:00
parent 04b34b0dbd
commit c161e600b3
3 changed files with 25 additions and 2 deletions

View File

@ -1,3 +1,26 @@
2015-10-17 Moritz Bunkus <moritz@bunkus.org>
* Released v1.3.2.
2015-08-21 Steve Lhomme <robUx4@gmail.com>
* EbmlElement::FindNextElement(): Handle EOF when reading the
element size properly.
2015-06-15 Steve Lhomme <robUx4@gmail.com
* Disable debug code for builds for the Windows App Store.
2015-06-12 Cristian Morales Vega <reddwarf@opensuse.org>
* Update the license information: use latest official text for the
LGPL.
2015-02-23 Steve Lhomme <robux4@gmail.com>
* EbmlString::ValidateSize(): only allow the same maximum size as
EbmlBinary.
2015-01-04 Moritz Bunkus <moritz@bunkus.org>
* Released v1.3.1.

View File

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

View File

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