release: bump version to 1.20.0

This commit is contained in:
Aleksander Morgado
2022-10-27 20:03:33 +00:00
parent 1532545efa
commit d4fcb2a57c
2 changed files with 7 additions and 7 deletions

View File

@@ -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

View File

@@ -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'