From d4fcb2a57c978b2ef9d819d32c54c1695582e32b Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Thu, 27 Oct 2022 20:03:33 +0000 Subject: [PATCH] release: bump version to 1.20.0 --- configure.ac | 8 ++++---- meson.build | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index dd82b6a9..4c0c8a37 100644 --- a/configure.ac +++ b/configure.ac @@ -5,8 +5,8 @@ dnl Package and library versioning support dnl m4_define([mm_major_version], [1]) -m4_define([mm_minor_version], [19]) -m4_define([mm_micro_version], [900]) +m4_define([mm_minor_version], [20]) +m4_define([mm_micro_version], [0]) m4_define([mm_version], [mm_major_version.mm_minor_version.mm_micro_version]) @@ -18,9 +18,9 @@ dnl If the interface has grown (that is, the new library is compatible dnl with old code), increment a. dnl If the interface has changed in an incompatible way (that is, dnl functions have changed or been removed), then zero a. -m4_define([mm_glib_lt_current], [8]) +m4_define([mm_glib_lt_current], [9]) m4_define([mm_glib_lt_revision], [0]) -m4_define([mm_glib_lt_age], [8]) +m4_define([mm_glib_lt_age], [9]) dnl----------------------------------------------------------------------------- dnl autoconf, automake, libtool initialization diff --git a/meson.build b/meson.build index fd85f4a1..f4045877 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'ModemManager', 'c', - version: '1.19.900', + version: '1.20.0', license: 'GPL2', default_options: [ 'buildtype=debugoptimized', @@ -40,9 +40,9 @@ mm_glib_pkgincludedir = mm_includedir / mm_glib_name # - Otherwise, increment c and zero r. # - If the interface has grown (that is, the new library is compatible with old code), increment a. # - If the interface has changed in an incompatible way (that is, functions have changed or been removed), then zero a. -current = 8 +current = 9 revision = 0 -age = 8 +age = 9 mm_glib_version = '@0@.@1@.@2@'.format(current - age, age, revision) mm_gir_version = '1.0'