version bump to unstable
This commit is contained in:
parent
6b686678ce
commit
891650869b
@ -1,3 +1,8 @@
|
|||||||
|
18/7/10 started 7.23.0
|
||||||
|
- im_vips2bufjpeg() writes to a linked list, so it will work for any size
|
||||||
|
image and header
|
||||||
|
- added im_vips2bufpng()
|
||||||
|
|
||||||
12/5/10 started 7.22.2
|
12/5/10 started 7.22.2
|
||||||
- the conditional image of ifthenelse can be any format, a (!=0) is added if
|
- the conditional image of ifthenelse can be any format, a (!=0) is added if
|
||||||
necessary
|
necessary
|
||||||
@ -6,8 +11,6 @@
|
|||||||
- im_vips2jpeg() could fail for very small images (thanks Tim)
|
- im_vips2jpeg() could fail for very small images (thanks Tim)
|
||||||
- threadpool wasn't stopping on allocate errors (thanks Tim)
|
- threadpool wasn't stopping on allocate errors (thanks Tim)
|
||||||
- vips_sink_disc() could block if allocate failed (thanks Tim)
|
- vips_sink_disc() could block if allocate failed (thanks Tim)
|
||||||
- im_vips2bufjpeg() writes to a linked list, so it will work for any size
|
|
||||||
image and header
|
|
||||||
|
|
||||||
12/5/10 started 7.22.1
|
12/5/10 started 7.22.1
|
||||||
- fix a problem with tiff pyramid write and >1cpu, thanks Ruven
|
- fix a problem with tiff pyramid write and >1cpu, thanks Ruven
|
||||||
|
10
configure.in
10
configure.in
@ -5,8 +5,8 @@ AC_CONFIG_MACRO_DIR(m4)
|
|||||||
|
|
||||||
# user-visible library versioning
|
# user-visible library versioning
|
||||||
m4_define([vips_major_version], [7])
|
m4_define([vips_major_version], [7])
|
||||||
m4_define([vips_minor_version], [22])
|
m4_define([vips_minor_version], [23])
|
||||||
m4_define([vips_micro_version], [2])
|
m4_define([vips_micro_version], [0])
|
||||||
m4_define([vips_version],
|
m4_define([vips_version],
|
||||||
[vips_major_version.vips_minor_version.vips_micro_version])
|
[vips_major_version.vips_minor_version.vips_micro_version])
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ PACKAGE=vips
|
|||||||
# interface changes not backwards compatible?: reset age to 0
|
# interface changes not backwards compatible?: reset age to 0
|
||||||
|
|
||||||
LIBRARY_CURRENT=29
|
LIBRARY_CURRENT=29
|
||||||
LIBRARY_REVISION=3
|
LIBRARY_REVISION=4
|
||||||
LIBRARY_AGE=14
|
LIBRARY_AGE=14
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
||||||
@ -589,8 +589,8 @@ AC_SUBST(PACKAGES_USED)
|
|||||||
# vips-$IM_MAJOR_VERSION.$IM_MINOR_VERSION.pc
|
# vips-$IM_MAJOR_VERSION.$IM_MINOR_VERSION.pc
|
||||||
# in AC_OUTPUT, but that seems to break for some combinations of sh/m4
|
# in AC_OUTPUT, but that seems to break for some combinations of sh/m4
|
||||||
AC_OUTPUT([
|
AC_OUTPUT([
|
||||||
vips-7.22.pc
|
vips-7.23.pc
|
||||||
vipsCC-7.22.pc
|
vipsCC-7.23.pc
|
||||||
Makefile
|
Makefile
|
||||||
libvips/include/vips/version.h
|
libvips/include/vips/version.h
|
||||||
libvips/include/Makefile
|
libvips/include/Makefile
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -4,12 +4,12 @@ bin_SCRIPTS = \
|
|||||||
batch_image_convert \
|
batch_image_convert \
|
||||||
batch_rubber_sheet \
|
batch_rubber_sheet \
|
||||||
batch_crop \
|
batch_crop \
|
||||||
vips-7.22
|
vips-7.23
|
||||||
|
|
||||||
noinst_SCRIPTS = post_install
|
noinst_SCRIPTS = post_install
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
vips-7.22 \
|
vips-7.23 \
|
||||||
${noinst_SCRIPTS} \
|
${noinst_SCRIPTS} \
|
||||||
light_correct.in \
|
light_correct.in \
|
||||||
shrink_width.in \
|
shrink_width.in \
|
||||||
|
Loading…
Reference in New Issue
Block a user