diff --git a/RELEASING b/RELEASING index aa70795708482e50811c01c6a46743f976f818e3..ed72d756c0d28d04d6106193288b3b0246d5e897 100644 --- a/RELEASING +++ b/RELEASING @@ -25,7 +25,7 @@ The ModemManager releases are generated using meson. $ ninja -C build 3) Run the test suite and install locally: - $ ninja -C build test + $ ninja -C build dist $ sudo ninja -C build install 4) Create directories for the manpages and gtk-doc documentation in diff --git a/meson.build b/meson.build index 98e5f5f50e11d764465dd68f9642da3a4444269a..e9c94e13585c41cbc0618073790a8d4788059285 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'ModemManager', 'c', - version: '1.23.12', + version: '1.23.95', license: 'GPL2', default_options: [ 'buildtype=debugoptimized', @@ -45,9 +45,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 = 10 +current = 11 revision = 0 -age = 10 +age = 11 mm_glib_version = '@0@.@1@.@2@'.format(current - age, age, revision) mm_gir_version = '1.0' @@ -259,14 +259,14 @@ config_h.set('WITH_BUILTIN_PLUGINS', enable_builtin_plugins) # MBIM support (enabled by default) enable_mbim = get_option('mbim') if enable_mbim - mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.5') + mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.95') endif config_h.set('WITH_MBIM', enable_mbim) # QMI support (enabled by default) enable_qmi = get_option('qmi') if enable_qmi - qmi_glib_dep = dependency('qmi-glib', version: '>= 1.35.6') + qmi_glib_dep = dependency('qmi-glib', version: '>= 1.35.95') endif config_h.set('WITH_QMI', enable_qmi)