version bump

and changelog update
This commit is contained in:
John Cupitt 2022-07-30 12:37:30 +01:00
parent d17fd9b640
commit 8c71424e9a
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
master
- version bump to 8.14
- remove autotools
- jp2ksave defaults to chroma subsample off
24/7/22 started 8.13.1 24/7/22 started 8.13.1
- fix im7 feature detection in meson - fix im7 feature detection in meson

View File

@ -1,5 +1,5 @@
project('vips', 'c', 'cpp', project('vips', 'c', 'cpp',
version: '8.13.1', version: '8.14.0',
meson_version: '>=0.56', meson_version: '>=0.56',
default_options: [ default_options: [
# this is what glib uses (one of our required deps), so we use it too # this is what glib uses (one of our required deps), so we use it too
@ -19,9 +19,9 @@ version_patch = version_parts[2]
# binary interface changed: increment current, reset revision to 0 # binary interface changed: increment current, reset revision to 0
# binary interface changes backwards compatible?: increment age # binary interface changes backwards compatible?: increment age
# binary interface changes not backwards compatible?: reset age to 0 # binary interface changes not backwards compatible?: reset age to 0
library_current = 57 library_current = 58
library_age = 15 library_age = 16
library_revision = 1 library_revision = 0
library_version = '@0@.@1@.@2@'.format(library_current - library_age, library_age, library_revision) library_version = '@0@.@1@.@2@'.format(library_current - library_age, library_age, library_revision)
darwin_versions = [library_current + 1, '@0@.@1@'.format(library_current + 1, library_revision)] darwin_versions = [library_current + 1, '@0@.@1@'.format(library_current + 1, library_revision)]