From 0fb2269c4d3370ef4824bfbd4fbef7cb5de18eb3 Mon Sep 17 00:00:00 2001 From: James Zern Date: Mon, 13 Jun 2016 19:10:21 -0700 Subject: [PATCH] bump version to 0.5.1 libwebp{,decoder} - 0.5.1 libwebp libtool - 6.1.0 libwebpdecoder libtool - 2.1.0 mux - 0.3.1 libtool - 2.1.0 demux (no changes) - 0.3.0 libtool - 2.0.0 Change-Id: I6f51bfaccf33ff7a1492f3e8f888324d7afc0f4b --- README | 2 +- README.mux | 2 +- configure.ac | 2 +- src/Makefile.am | 4 ++-- src/enc/vp8enci.h | 2 +- src/mux/Makefile.am | 2 +- src/mux/muxi.h | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README b/README index 07c0aeae..4a81909e 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ \__\__/\____/\_____/__/ ____ ___ / _/ / \ \ / _ \/ _/ / \_/ / / \ \ __/ \__ - \____/____/\_____/_____/____/v0.5.0 + \____/____/\_____/_____/____/v0.5.1 Description: ============ diff --git a/README.mux b/README.mux index aa077e8d..4e2e5600 100644 --- a/README.mux +++ b/README.mux @@ -1,7 +1,7 @@  __ __ ____ ____ ____ __ __ _ __ __ / \\/ \/ _ \/ _ \/ _ \/ \ \/ \___/_ / _\ \ / __/ _ \ __/ / / (_/ /__ - \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.3.0 + \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.3.1 Description: diff --git a/configure.ac b/configure.ac index d5658228..59da9620 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libwebp], [0.5.0], +AC_INIT([libwebp], [0.5.1], [https://bugs.chromium.org/p/webp],, [http://developers.google.com/speed/webp]) AC_CANONICAL_HOST diff --git a/src/Makefile.am b/src/Makefile.am index 23c5b491..8567c6f0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -38,7 +38,7 @@ libwebp_la_LIBADD += utils/libwebputils.la # other than the ones listed on the command line, i.e., after linking, it will # not have unresolved symbols. Some platforms (Windows among them) require all # symbols in shared libraries to be resolved at library creation. -libwebp_la_LDFLAGS = -no-undefined -version-info 6:0:0 +libwebp_la_LDFLAGS = -no-undefined -version-info 6:1:0 libwebpincludedir = $(includedir)/webp pkgconfig_DATA = libwebp.pc @@ -50,7 +50,7 @@ if BUILD_LIBWEBPDECODER libwebpdecoder_la_LIBADD += dsp/libwebpdspdecode.la libwebpdecoder_la_LIBADD += utils/libwebputilsdecode.la - libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 2:0:0 + libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 2:1:0 pkgconfig_DATA += libwebpdecoder.pc endif diff --git a/src/enc/vp8enci.h b/src/enc/vp8enci.h index d3b588b7..c1fbd764 100644 --- a/src/enc/vp8enci.h +++ b/src/enc/vp8enci.h @@ -32,7 +32,7 @@ extern "C" { // version numbers #define ENC_MAJ_VERSION 0 #define ENC_MIN_VERSION 5 -#define ENC_REV_VERSION 0 +#define ENC_REV_VERSION 1 enum { MAX_LF_LEVELS = 64, // Maximum loop filter level MAX_VARIABLE_LEVEL = 67, // last (inclusive) level with variable cost diff --git a/src/mux/Makefile.am b/src/mux/Makefile.am index a25bf286..042a14ba 100644 --- a/src/mux/Makefile.am +++ b/src/mux/Makefile.am @@ -13,6 +13,6 @@ libwebpmuxinclude_HEADERS += ../webp/mux_types.h libwebpmuxinclude_HEADERS += ../webp/types.h libwebpmux_la_LIBADD = ../libwebp.la -libwebpmux_la_LDFLAGS = -no-undefined -version-info 2:0:0 +libwebpmux_la_LDFLAGS = -no-undefined -version-info 2:1:0 libwebpmuxincludedir = $(includedir)/webp pkgconfig_DATA = libwebpmux.pc diff --git a/src/mux/muxi.h b/src/mux/muxi.h index 5e8ba2e8..d4d5cbad 100644 --- a/src/mux/muxi.h +++ b/src/mux/muxi.h @@ -28,7 +28,7 @@ extern "C" { #define MUX_MAJ_VERSION 0 #define MUX_MIN_VERSION 3 -#define MUX_REV_VERSION 0 +#define MUX_REV_VERSION 1 // Chunk object. typedef struct WebPChunk WebPChunk;