summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-06-12 14:58:32 -0700
committerJames Zern <jzern@google.com>2013-06-12 23:19:13 -0700
commit5a92c1a5e99fbc87a48a7694979fd518e8e98037 (patch)
tree3832c19690efaa4fc83092b3e9485e1873d3af59
parent67bc353e6d5ef9f4e2ae059d36189b256cad2c5d (diff)
downloadlibwebp-5a92c1a5e99fbc87a48a7694979fd518e8e98037.tar.gz
bump version to 0.3.1
libwebp{,decoder} - 0.3.1 libwebp libtool - 4.3.0 (compatible release) libwebpdecoder libtool - 0.1.0 (compatible release) mux/demux - 0.1.1 libtool - 0.1.0 (compatible release) Change-Id: Icc8329a6bcd9eea5a715ea83f1535a66d6ba4b58
-rw-r--r--README2
-rw-r--r--README.mux2
-rw-r--r--configure.ac2
-rw-r--r--src/Makefile.am4
-rw-r--r--src/dec/vp8i.h2
-rw-r--r--src/demux/Makefile.am2
-rw-r--r--src/demux/demux.c2
-rw-r--r--src/enc/vp8enci.h2
-rw-r--r--src/mux/Makefile.am2
-rw-r--r--src/mux/muxi.h2
10 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index 0d0476c1..d0d95e63 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@
\__\__/\____/\_____/__/ ____ ___
/ _/ / \ \ / _ \/ _/
/ \_/ / / \ \ __/ \__
- \____/____/\_____/_____/____/v0.3.0
+ \____/____/\_____/_____/____/v0.3.1
Description:
============
diff --git a/README.mux b/README.mux
index a1491bb9..a5a87d49 100644
--- a/README.mux
+++ b/README.mux
@@ -1,7 +1,7 @@
 __ __ ____ ____ ____ __ __ _ __ __
/ \\/ \/ _ \/ _ \/ _ \/ \ \/ \___/_ / _\
\ / __/ _ \ __/ / / (_/ /__
- \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.1.0
+ \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.1.1
Description:
diff --git a/configure.ac b/configure.ac
index 2d9cb37e..c31adf88 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libwebp], [0.3.0],
+AC_INIT([libwebp], [0.3.1],
[http://code.google.com/p/webp/issues],,
[http://developers.google.com/speed/webp])
AC_CANONICAL_TARGET
diff --git a/src/Makefile.am b/src/Makefile.am
index db289da6..8f3557c0 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -36,7 +36,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 4:2:0
+libwebp_la_LDFLAGS = -no-undefined -version-info 4:3:0
libwebpincludedir = $(includedir)/webp
pkgconfig_DATA = libwebp.pc
@@ -48,7 +48,7 @@ if BUILD_LIBWEBPDECODER
libwebpdecoder_la_LIBADD += dsp/libwebpdspdecode.la
libwebpdecoder_la_LIBADD += utils/libwebputilsdecode.la
- libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 0:0:0
+ libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 0:1:0
pkgconfig_DATA += libwebpdecoder.pc
endif
diff --git a/src/dec/vp8i.h b/src/dec/vp8i.h
index 80532ea4..1d0d4077 100644
--- a/src/dec/vp8i.h
+++ b/src/dec/vp8i.h
@@ -30,7 +30,7 @@ extern "C" {
// version numbers
#define DEC_MAJ_VERSION 0
#define DEC_MIN_VERSION 3
-#define DEC_REV_VERSION 0
+#define DEC_REV_VERSION 1
#define ONLY_KEYFRAME_CODE // to remove any code related to P-Frames
diff --git a/src/demux/Makefile.am b/src/demux/Makefile.am
index d1f126e5..7d4d2285 100644
--- a/src/demux/Makefile.am
+++ b/src/demux/Makefile.am
@@ -10,6 +10,6 @@ libwebpdemuxinclude_HEADERS += ../webp/mux_types.h
libwebpdemuxinclude_HEADERS += ../webp/types.h
libwebpdemux_la_LIBADD = ../libwebp.la
-libwebpdemux_la_LDFLAGS = -no-undefined -version-info 0:0:0
+libwebpdemux_la_LDFLAGS = -no-undefined -version-info 0:1:0
libwebpdemuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpdemux.pc
diff --git a/src/demux/demux.c b/src/demux/demux.c
index 57f6d477..bd17ff7f 100644
--- a/src/demux/demux.c
+++ b/src/demux/demux.c
@@ -29,7 +29,7 @@ extern "C" {
#define DMUX_MAJ_VERSION 0
#define DMUX_MIN_VERSION 1
-#define DMUX_REV_VERSION 0
+#define DMUX_REV_VERSION 1
typedef struct {
size_t start_; // start location of the data
diff --git a/src/enc/vp8enci.h b/src/enc/vp8enci.h
index 66c89394..61d56be5 100644
--- a/src/enc/vp8enci.h
+++ b/src/enc/vp8enci.h
@@ -30,7 +30,7 @@ extern "C" {
// version numbers
#define ENC_MAJ_VERSION 0
#define ENC_MIN_VERSION 3
-#define ENC_REV_VERSION 0
+#define ENC_REV_VERSION 1
// intra prediction modes
enum { B_DC_PRED = 0, // 4x4 modes
diff --git a/src/mux/Makefile.am b/src/mux/Makefile.am
index 19b033d3..fa4a5cfe 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 0:0:0
+libwebpmux_la_LDFLAGS = -no-undefined -version-info 0:1:0
libwebpmuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpmux.pc
diff --git a/src/mux/muxi.h b/src/mux/muxi.h
index d670bb00..eaed558b 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 1
-#define MUX_REV_VERSION 0
+#define MUX_REV_VERSION 1
// Chunk object.
typedef struct WebPChunk WebPChunk;