Skip to content

Commit c6dcab6

Browse files
author
Dan Williams
committed
release: bump version to 1.23.95
Signed-off-by: Dan Williams <[email protected]>
1 parent 4c1be49 commit c6dcab6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

RELEASING

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The ModemManager releases are generated using meson.
2525
$ ninja -C build
2626

2727
3) Run the test suite and install locally:
28-
$ ninja -C build test
28+
$ ninja -C build dist
2929
$ sudo ninja -C build install
3030

3131
4) Create directories for the manpages and gtk-doc documentation in

meson.build

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
project(
55
'ModemManager', 'c',
6-
version: '1.23.12',
6+
version: '1.23.95',
77
license: 'GPL2',
88
default_options: [
99
'buildtype=debugoptimized',
@@ -45,9 +45,9 @@ mm_glib_pkgincludedir = mm_includedir / mm_glib_name
4545
# - Otherwise, increment c and zero r.
4646
# - If the interface has grown (that is, the new library is compatible with old code), increment a.
4747
# - If the interface has changed in an incompatible way (that is, functions have changed or been removed), then zero a.
48-
current = 10
48+
current = 11
4949
revision = 0
50-
age = 10
50+
age = 11
5151
mm_glib_version = '@0@.@1@.@2@'.format(current - age, age, revision)
5252

5353
mm_gir_version = '1.0'
@@ -259,14 +259,14 @@ config_h.set('WITH_BUILTIN_PLUGINS', enable_builtin_plugins)
259259
# MBIM support (enabled by default)
260260
enable_mbim = get_option('mbim')
261261
if enable_mbim
262-
mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.5')
262+
mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.95')
263263
endif
264264
config_h.set('WITH_MBIM', enable_mbim)
265265

266266
# QMI support (enabled by default)
267267
enable_qmi = get_option('qmi')
268268
if enable_qmi
269-
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.35.6')
269+
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.35.95')
270270
endif
271271
config_h.set('WITH_QMI', enable_qmi)
272272

0 commit comments

Comments
 (0)