diff --git a/debian/changelog b/debian/changelog index cf7b644..23e119e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +timeshift (24.06.1) wilma; urgency=medium + + [ mostghost ] + * Relocated 'delete' to a safer position. (#268) + * Added confirmation dialog on delete. (#269) + + [ Clement Lefebvre ] + * Add missing l10n to previous commit + * l10n: Update POT + + -- Clement Lefebvre Thu, 06 Jun 2024 11:54:24 +0100 + timeshift (24.01.1) virginia; urgency=medium * l10n: Update translations diff --git a/meson.build b/meson.build index 0eae6cd..9991277 100644 --- a/meson.build +++ b/meson.build @@ -1,9 +1,12 @@ project( - 'timeshift', 'vala', 'c', - version: '24.01.1', + 'timeshift', + 'vala', + 'c', + version : '24.06.1', license : 'GPL-2.0-or-later', - meson_version: '>= 0.54.0', - default_options: ['c_std=c99', 'build.c_std=c99']) + meson_version : '>= 0.54.0', + default_options : ['c_std=c99', 'build.c_std=c99'] +) dependencies = [ dependency('glib-2.0'),