Skip to content
Snippets Groups Projects
Commit 0e1be285 authored by Dan Williams's avatar Dan Williams
Browse files

release: bump version to 1.23.95


Signed-off-by: default avatarDan Williams <dan@ioncontrol.co>
parent dc85edc9
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -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
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment