diff options
| -rw-r--r-- | NEWS | 8 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | meson.build | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +### atril 1.28.6 + + * Fix and off-by-one error for fit-to-page zoom + * epub: use g_strndup for parsing document path + * epub: validate epub content before parsing + * build: Distribute meson build files when using autotools + * meson: Make caja extension optional + ### atril 1.28.5 * CI: release - create tarball with autotools (distcheck) diff --git a/configure.ac b/configure.ac index 5dc35283..4b1afe8f 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ m4_define([ev_major_version], [1]) m4_define([ev_minor_version], [28]) -m4_define([ev_micro_version], [5]) +m4_define([ev_micro_version], [6]) m4_define([ev_extra_version], []) m4_define([ev_version], [ev_major_version.ev_minor_version.ev_micro_version()ev_extra_version]) diff --git a/meson.build b/meson.build index eb9efab2..779e08aa 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('atril', 'c', 'cpp', - version: '1.28.5', + version: '1.28.6', meson_version: '>=0.56.0', default_options: [ 'warning_level=1', |
