blob: 7c81e32311da32829d5cf7a05cfee196882c7664 [file] [log] [blame]
Max4e72ee02016-12-13 18:41:17 +01001# When cleaning up this file: bump API version in corresponding Makefile.am and rename corresponding debian/lib*.install
Pau Espin Pedrol01dd5702018-05-03 15:01:47 +02002# according to https://osmocom.org/projects/cellular-infrastructure/wiki/Make_a_new_release
3# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
Max4e72ee02016-12-13 18:41:17 +01004# LIBVERSION=c:r:a
5# If the library source code has changed at all since the last update, then increment revision: c:r + 1:a.
6# If any interfaces have been added, removed, or changed since the last update: c + 1:0:0.
7# If any interfaces have been added since the last public release: c:r:a + 1.
8# If any interfaces have been removed or changed since the last public release: c:r:0.
Maxbf990bb2016-04-21 14:46:30 +02009#library what description / commit summary line
Harald Welte047f3872018-07-01 21:04:45 +020010libosmogb gprs_ns_inst Adding bss_sns_fi member for IP-SNS support
11libosmogb gprs_nsvc Adding sig_weight and data_weight members for IP-SNS support
12libosmogb various new symbols Adding functions related to IP-SNS support
Neels Hofmeyr3b414a42019-04-08 00:33:53 +020013libosmocore osmo_fsm_inst Add flag proc.terminating (ABI change)
Neels Hofmeyrecef7ec2019-03-05 16:42:50 +010014libosmocore osmo_escape_str(), These now always copy to the buffer instead of returning the
15 osmo_escape_str_buf() unchanged input string when no chars needed escaping, hence
16 returned strings might now also be truncated even if all chars were printable.
17libosmocore osmo_escape_str_buf2() New function signature similar to snprintf(), for use with OSMO_STRBUF_APPEND().
18libosmocore osmo_quote_str(), On string truncation, these used to print a closing quote '"' after the
19 osmo_quote_str_buf() truncated string. This is no longer the case. e.g. a string 'truncated' in a
20 9-char buffer used to print '"trunca"\0', which now becomes '"truncat\0'.
21libosmocore osmo_quote_str_buf2() New function signature similar to snprintf(), for use with OSMO_STRBUF_APPEND().