From: Moritz Bunkus Date: Sat, 22 Sep 2012 22:30:44 +0000 (+0000) Subject: Bump version number, library .so version number, add ChangeLog info X-Git-Tag: release-1.4.0~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fbe2877fbe3f8d01ccf925fd8c4a6fcfbb6753b;p=libmatroska Bump version number, library .so version number, add ChangeLog info git-svn-id: https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/libmatroska@849 a6f86f6d-0131-4f8e-9e7b-e335508773d5 --- diff --git a/ChangeLog b/ChangeLog index 823ff7a..3fe3b45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-09-23 mosu +New 1.4.0 version: + - Add new elements CueDuration, CueRelativePosition + - This release is not binary compatible to 1.4.0 due to the dependancy on libEBML 1.3.0 which is not + binary compatible to its predecessor. + 2011-09-23 robux4/mosu New 1.3.0 version: - initialize all data members diff --git a/debian/changelog b/debian/changelog index e487a91..f920ada 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libmatroska (1.4.0-1) precise; urgency=low + + * New version. + + -- Moritz Bunkus Sat, 22 Sep 2012 22:23:38 +0000 + libmatroska (1.3.0-1) natty; urgency=low * New version. diff --git a/debian/control b/debian/control index 5a43ecf..fdb2542 100644 --- a/debian/control +++ b/debian/control @@ -1,14 +1,14 @@ Source: libmatroska Priority: optional Maintainer: Moritz Bunkus -Build-Depends: debhelper (>> 3.0.0), libebml-dev (>= 1.0.0-1) +Build-Depends: debhelper (>> 3.0.0), libebml-dev (>= 1.3.0-1) Standards-Version: 3.5.8 Section: libs Package: libmatroska-dev Section: libdevel Architecture: any -Depends: libebml-dev (>= 1.0.0-1) +Depends: libebml-dev (>= 1.3.0-1) Description: an extensible open standard Audio/Video container format Matroska is aiming to become the standard of Multimedia Container Formats one day. It is based on EBML (Extensible Binary diff --git a/make/linux/Makefile b/make/linux/Makefile index fd4bf01..5a4ddd0 100644 --- a/make/linux/Makefile +++ b/make/linux/Makefile @@ -54,7 +54,7 @@ MUX_LIBS=-lmatroska -lebml $(LIBICONV) # Names LIBRARY=libmatroska.a LIBRARY_SO=libmatroska.so -LIBRARY_SO_VER=libmatroska.so.5 +LIBRARY_SO_VER=libmatroska.so.6 # source-files sources:=$(wildcard ${SRC_DIR}*$(EXTENSION)) diff --git a/make/linux/fedora-core.spec b/make/linux/fedora-core.spec index 43aafd1..16b01a4 100644 --- a/make/linux/fedora-core.spec +++ b/make/linux/fedora-core.spec @@ -1,7 +1,7 @@ # SPEC file for (at least) Fedora Core 1, 2, 3 Name: libmatroska -Version: 1.3.0 +Version: 1.4.0 Release: 1 License: LGPL Summary: Matroska Video Container diff --git a/make/linux/suse.spec b/make/linux/suse.spec index fd879c6..b62c082 100644 --- a/make/linux/suse.spec +++ b/make/linux/suse.spec @@ -14,7 +14,7 @@ BuildRequires: bzip2 cpp libebml make tar zlib zlib-devel binutils gcc gcc-c++ l Name: libmatroska URL: http://dl.matroska.org/downloads/libmatroska/ -Version: 1.3.0 +Version: 1.4.0 Release: 1 Summary: library to deal with matroska files. License: LGPL diff --git a/matroska/KaxVersion.h b/matroska/KaxVersion.h index c84b844..df1d1c7 100644 --- a/matroska/KaxVersion.h +++ b/matroska/KaxVersion.h @@ -40,7 +40,7 @@ START_LIBMATROSKA_NAMESPACE -#define LIBMATROSKA_VERSION 0x010300 +#define LIBMATROSKA_VERSION 0x010400 extern const std::string KaxCodeVersion; extern const std::string KaxCodeDate; diff --git a/src/KaxVersion.cpp b/src/KaxVersion.cpp index edf8e77..dd646bd 100644 --- a/src/KaxVersion.cpp +++ b/src/KaxVersion.cpp @@ -37,7 +37,7 @@ START_LIBMATROSKA_NAMESPACE -const std::string KaxCodeVersion = "1.3.0"; +const std::string KaxCodeVersion = "1.4.0"; const std::string KaxCodeDate = __TIMESTAMP__; END_LIBMATROSKA_NAMESPACE