diff --git a/ChangeLog b/ChangeLog index 652cd71..6a2e7f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +v1.9.1 - 2022-07-06 +-------------------- +Kim Woelders (14): + x11_color: Simplify and fix error paths + JPEG loader: Use mmap'ed file access + modules: Eliminate __imlib_TrimLoaderList() + Introduce strsplit() + modules: Cosmetics, mostly + modules: Enable setting multiple loader/filter paths + test: Add test_misc + modules: Fix signdness warning + TIFF loader: Change default save compression type + imlib2_load: Remove unused macro + imlib2_conv: Cosmetic changes + imlib2_conv: Drop obsolete .db stuff, simplify + imlib2_conv: Enable passing attached data to saver + v1.9.1 + +NRK (3): + check for some alloc failures + check for alloc failures some more + modules: check for filepath truncation + v1.9.0 - 2022-04-21 -------------------- Kim Woelders (53): diff --git a/configure.ac b/configure.ac index 6f6c4d0..4115a7b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([imlib2],[1.9.0],[enlightenment-devel@lists.sourceforge.net]) +AC_INIT([imlib2],[1.9.1],[enlightenment-devel@lists.sourceforge.net]) AC_CONFIG_SRCDIR(configure.ac) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_BUILD @@ -22,7 +22,7 @@ define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl LT_INIT VERSION_CUR=10 -VERSION_REV=0 +VERSION_REV=1 VERSION_AGE=9 lt_version=${VERSION_CUR}:${VERSION_REV}:${VERSION_AGE} AC_SUBST(lt_version)