osmith has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/37569?usp=email )
Change subject: Bump version: 1.4.0.57-481f-dirty → 1.5.0 ......................................................................
Bump version: 1.4.0.57-481f-dirty → 1.5.0
Change-Id: I4b88f29247d4ef56ef971f614ff669fe55c47153 --- M TODO-RELEASE M configure.ac M debian/changelog M debian/control M src/Makefile.am 5 files changed, 93 insertions(+), 17 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/TODO-RELEASE b/TODO-RELEASE index 83bc188..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -1,17 +1,9 @@ # When cleaning up this file: bump API version in corresponding Makefile.am and rename corresponding debian/lib*.install -# according to https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.... -# In short: +# according to https://osmocom.org/projects/cellular-infrastructure/wiki/Make_a_new_release +# In short: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.... # LIBVERSION=c:r:a # If the library source code has changed at all since the last update, then increment revision: c:r + 1:a. -# If any interfaces have been added, removed, or changed since the last update: c + 1:0:0. +# If any interfaces have been added, removed, or changed since the last update: c + 1:0:a. # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. -#library what description / commit summary line -libosmocore >1.9.0 working osmo_sock_init2_multiaddr2() without setting flag OSMO_SOCK_F_BIND -libosmocore >1.9.0 use osmo_sock_multiaddr_get_name_buf() -libosmocore >1.9.0 use OSMO_IO_FD_MODE_RECVMSG_SENDMSG -libosmocore >1.9.0 use osmo_iofd_get_ioops() -libosmo-netif added osmo_stream_srv_get_sockname() -libosmo-netif update-dependency libosmocore > 1.9.0 required for I89eb519b22d21011d61a7855b2364bc3c295df82 -libosmo-netif ADD osmo_stream_srv_link_get_name(), osmo_stream_srv_get_name(), osmo_stream_cli_get_name() -libosmo-netif ADD osmo_prim_srv_link_set_name(), osmo_prim_srv_set_name() \ No newline at end of file +#library what description / commit summary line diff --git a/configure.ac b/configure.ac index 8016bdd..98755cf 100644 --- a/configure.ac +++ b/configure.ac @@ -89,9 +89,9 @@ dnl Generate the output AM_CONFIG_HEADER(config.h)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.9.0) -PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.9.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.10.0) +PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.10.0)
AC_ARG_ENABLE([lapd_examples], [AS_HELP_STRING( diff --git a/debian/changelog b/debian/changelog index 5c71f2d..90f725a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,78 @@ +libosmo-netif (1.5.0) unstable; urgency=medium + + [ arehbein ] + * ipa: Don't break strict aliasing rule + * stream_srv: Set io_fd pointer to NULL after freeing + * stream_test: Disable nagling + * stream: Add client-side (segmentation) support for IPA + * stream (test): Fix Coverity CID 323456 + * stream: Add and use helper function osmo_ipa_push_headers() + * stream_test: Improve mem mgmt, fix connection mgmt + * stream_test: Fix memleaks + + [ Daniel Willmann ] + * stream_srv: Fix connection error handling + * stream_srv: Make osmo_stream_srv_clear_tx_queue() aware of osmo_io + * stream_test: Increase log level to debug + + [ Harald Welte ] + * stream_srv: osmo_stream_srv_get_ofd() works only in OSMO_FD mode + * Introduce generic osmo_stream_{cli,srv}_get_fd() API + * examples/stream-*: Support SCTP when called with "-s" argument + * examples/stream-{server,client}: Generate talloc report on SIGUSR1 + * stream_{cli,srv}: Add support for SCTP in OSMO_IO mode + * osmo_io: make use of osmo_iofd_get_ioops() + * osmo_stream_cli_send(): Drop data if client is not connected [yet] + * Makefile.am: Fix dependency: rebuild doxygen on src/include changes + * docs: Enable AUTOBRIEF feauture in doxygen + * docs: Use \defgroup and avoid repeated boilerplate text + * docs: Don't export documentation about static (internal) functions + * Ensure osmo_stream_{cli,srv}_recv() is used only in osmo_fd mode + * docs: More verbose stream_{cli,srv} API documentation/manual + * docs: Don't export internal structs declared in src files + * docs: Split Stream Server and Stream Client into separate groups + * docs: jibuf: Prevent internal #defines being documented + * Makefile.am: Remove $(SOURCES) which is not defined anywhere + * introduce osmo_stream_cli_get_iofd() API + * docs: various osmux API documentation updates + * docs: Improve/clean-up doxygen for datagram.[ch] + + [ Pau Espin Pedrol ] + * stream_cli: Fix opening sctp client socket if no local address set + * stream: Add missing osmo_stream_srv_link_get_fd() API + * netif: sctp.h: Introduce value_string for enum sctp_spinfo_state + * netif: sctp.h: Introduce value_string for enum sctp_sstat_state + * stream_cli: osmo_stream_cli_get_sockname() now returns the full set of addresses + * stream_cli: Introduce API osmo_stream_srv_get_sockname() + * stream_srv_link: osmo_stream_srv_link_get_sockname() now returns the full set of addresses + * osmo_prim_srv_send: assert prim_srv is not NULL + * stream: Add osmo_stream_*_get_name() APIs + * prim: Introduce osmo_prim_srv{_link}_set_name APIs + * stream_srv: Fix retrieve of srv_link sockname for AF_UNIX sockets + * examples/ipa-stream-client: Fix memleaks in read_cb() + * stream_cli: Remove unused write_cb field + * stream: Define types for each API callback + * tests/stream: Fix missing msgb_free() + * stream_{cli,srv}: Add 'res' param to read_cb2 + + [ Vadim Yanitskiy ] + * build: include git-version-gen into the release tarball + * osmo_stream_cli_write(): fix double-free of msgb + * README.md: cosmetic: fix a typo + + [ Andreas Eversberg ] + * examples/stream-*: Add options, to set local/remote peer + * stream_{cli,srv}: Fix memory leak, if sending a message fails + * stream_{cli,srv}: Free received messages when not forwarded + * stream_cli: Correctly setup and free osmo_io client instance + * stream_{client,server} example: Cleanup on exit + * stream_cli.c: Handle read / recvfrom error and close connection + + [ Oliver Smith ] + * contrib: remove rpm spec file + + -- Oliver Smith osmith@sysmocom.de Wed, 24 Jul 2024 11:58:42 +0200 + libosmo-netif (1.4.0) unstable; urgency=medium
[ Max ] diff --git a/debian/control b/debian/control index 94c11ef..6259deb 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ libdpkg-perl, git, doxygen, - libosmocore-dev (>= 1.9.0), + libosmocore-dev (>= 1.10.0), pkg-config, libpcap0.8-dev, libsctp-dev diff --git a/src/Makefile.am b/src/Makefile.am index 7b38ac0..874a92d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ # This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification -LIBVERSION=12:0:1 +LIBVERSION=13:0:2
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)