diff --git a/ChangeLog b/ChangeLog index 7822afe..7e6a01d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2016-03-21: VERSION 03: internal xmlwriter, metadata handling functions, bug fixes +2016-03-21: Feature: add helper functions for metadata extraction +2016-03-21: Load also kf8 data when only kf7 version is requested +2016-03-21: Fix: wrong exth header length check could discard some valid headers +2016-03-20: Get rid of extended attributes in release archive on OS X +2016-03-19: Mobitool: add descriptive error messages based on libmobi return codes +2016-03-04: Add extra length check for CMET record extraction +2016-03-04: Always check buffer allocation result +2016-03-04: Add functions to extract conversion source and log, also add this feature to mobitool +2016-03-04: Remove some stray printfs +2016-03-03: Remove not used AC_FUNC_MALLOC/REALLOC macros that break cross-compilation +2016-03-03: Fix potential illegal memory access in miniz.c +2016-03-03: Fix potential dereference of null pointer in miniz.c +2016-03-03: Fix for Android bionic libc bug (SIZE_MAX missing in stdint.h) +2016-03-03: Fix mobitool compilation on MSVC++ +2016-03-03: Add EPUB creation feature to mobitool +2016-03-02: Fix potential buffer overflow, null pointer dereference +2016-03-02: Add travis test for no-external-dependency build +2016-03-02: Fix missing strdup on linux +2016-03-02: Add internal xmlwriter (as an alternative to libxml2) +2016-03-01: Feature: decode html entities in exth header strings +2016-02-29: Fix: potential buffer overflow +2016-02-29: Fix: wrong pid calculation (regression introduced in 0.2) 2016-02-26: VERSION 0.2: increased stability, lots of bugs fixed 2016-02-26: Add Xcode project file 2016-02-26: Preliminary support for MSVC++ compiler diff --git a/configure.ac b/configure.ac index 1130b91..1b4f32e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([1.10]) -AC_INIT([libmobi], [0.2]) +AC_INIT([libmobi], [0.3]) AC_CONFIG_SRCDIR([src/buffer.c]) # Enable automake diff --git a/src/util.c b/src/util.c index 5db030c..be08b26 100644 --- a/src/util.c +++ b/src/util.c @@ -73,7 +73,7 @@ static const unsigned char cp1252_to_utf8[32][3] = { */ const char * mobi_version(void) { #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.2" +#define PACKAGE_VERSION "0.3" #endif return PACKAGE_VERSION; }