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

Merge request !224 from 'release-1.31.95'

release: bump version to 1.31.95

!224
parents 0a5dab96 5c83c695
Branches main
1 merge request!224release: bump version to 1.31.95
Pipeline #1375824 passed
Overview of changes in libmbim 1.32
----------------------------------------
* Build:
** Ignore more files and add an EditorConfig file
* New Fibocom service, including the following operations:
* MBIM_CID_FIBOCOM_AT_COMMAND
* New Compal service, including the following operations:
* MBIM_CID_COMPAL_AT_COMMAND
* Extend the Quectel service, including the following operations:
* MBIM_CID_QDU_AT_COMMAND
* mbim-proxy:
** Ensure Client is kept around during message processing
** Don't mistakenly delete mbim-proxy binary when run from same directory
* libmbim-glib:
** Support structure sizes that are not 4-byte aligned
** Fix building ms-uicc-low-level-access TerminalCapabilityData messages
** Various TLV header parsing fixes for corner cases
** Various leak fixes
** Fix re-opening a device when it was closed due to errors
** Assume QMI messages contain personal info that should be suppressed
** Add more ms-uicc-low-level-access error values including
MBIM_STATUS_ERROR_MS_NO_LOGICAL_CHANNELS, MBIM_STATUS_ERROR_MS_SELECT_FAILED,
and MBIM_STATUS_ERROR_MS_INVALID_LOGICAL_CHANNEL
* mbimcli:
** New '--sms-read' and '--sms-delete' actions.
** New '--compal-query-at-command', '--fibocom-set-at-command',
and '--quectel-set-at-command' actions.
** New MS Basic Connect '--ms-set-lte-attach-configuration'
** New Basic Connect '--set-register-state' to allow automatic or manual
registration configuration.
** Renamed Basic Connect '--query-registration-state' to
'--query-register-state' to be consistent with other actions. Old name
is kept as an alias for compatibility.
* mbim-network:
** Fix matching ActivationState values during connect action
Overview of changes in libmbim 1.30
----------------------------------------
......@@ -712,4 +756,4 @@ Overview of changes in libmbim 1.0
Overview of changes in libmbim 0.0.1
----------------------------------------
Initial release.
\ No newline at end of file
Initial release.
......@@ -24,7 +24,7 @@ The libmbim 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(
'libmbim', 'c',
version: '1.31.6',
version: '1.31.95',
license: ['GPL-2.0-or-later', 'LGPL-2.1-or-later'],
default_options: [
'buildtype=debugoptimized',
......@@ -35,9 +35,9 @@ mbim_glib_pkgincludedir = mbim_includedir / mbim_glib_include_subdir
# - 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 = 12
current = 13
revision = 0
age = 8
age = 9
mbim_glib_version = '@0@.@1@.@2@'.format(current - age, age, revision)
mbim_gir_version = '1.0'
......
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