summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Woelders <kim@woelders.dk>2018-03-17 14:01:32 +0100
committerKim Woelders <kim@woelders.dk>2018-03-17 14:01:55 +0100
commit78e738612c3a685774253336e1c926e6795fa351 (patch)
tree8fffbbba24c10fe7f5f5a5aa63aebaf2b73f2b12
parentd0da3117e9b2a1599fa08fd74f8ca4bc9be42fc8 (diff)
downloadimlib2-78e738612c3a685774253336e1c926e6795fa351.tar.gz
1.5.1.v1.5.1
-rw-r--r--ChangeLog20
-rw-r--r--configure.ac4
2 files changed, 22 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 617be6d..5c5a511 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
***
+*** Version 1.5.1 ***
+***
+
+Kim Woelders (13):
+ Fix build without HAVE_X11_SHM_FD (T6752)
+ XPM loader: Fix potential use of uninitialized value (T6746)
+ BMP loader: Fix infinite loop with invalid bmp images (T6749)
+ PNM loader: Simplify (fixing ASCII format parsing issues T6751)
+ BMP loader: Fix warnings found with -O3
+ Maximum image dimension should be 32767, not 32766
+ PNG loader: Correct various error handling cases
+ Add missing const to imlib_apply_filter() script argument
+ Warning fixes in imlib2_... programs
+ imlib2_view: Limit window dimensions to 32767
+ grab.c: Fix gcc8 warning
+ imlib2_conv.c: Fix gcc8 warning
+ 1.5.1.
+
+
+***
*** Version 1.5.0 ***
***
diff --git a/configure.ac b/configure.ac
index e838447..9be29cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
# get rid of that stupid cache mechanism
rm -f config.cache
-AC_INIT([imlib2], [1.5.0], [enlightenment-devel@lists.sourceforge.net])
+AC_INIT([imlib2], [1.5.1], [enlightenment-devel@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
@@ -23,7 +23,7 @@ define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
LT_INIT
VERSION_CUR=6
-VERSION_REV=0
+VERSION_REV=1
VERSION_AGE=5
lt_version=${VERSION_CUR}:${VERSION_REV}:${VERSION_AGE}
AC_SUBST(lt_version)