diff options
author | Dan Williams <dan@ioncontrol.co> | 2025-03-10 22:31:55 -0500 |
---|---|---|
committer | Dan Williams <dan@ioncontrol.co> | 2025-03-10 22:42:42 -0500 |
commit | c6dcab61617636fe74bd6f51f74b134a4f80ad99 (patch) | |
tree | 127b00fb8906b1e06fe3682a59ec39c9f90f201f | |
parent | 4c1be4923a95073281a845b266964b6f26903add (diff) |
release: bump version to 1.23.95
Signed-off-by: Dan Williams <dan@ioncontrol.co>
-rw-r--r-- | RELEASING | 2 | ||||
-rw-r--r-- | meson.build | 10 |
2 files changed, 6 insertions, 6 deletions
@@ -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 98e5f5f5..e9c94e13 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) |