From b2a00776a04cd826a1c39bfb8e9cc5879e25f761 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 3 Dec 2019 20:38:18 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.1.10-35d9-dirty=20?= =?UTF-8?q?=E2=86=92=200.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I77c86455f9c36c16271bc8e7f8f3f72d682d23fd --- debian/changelog | 20 ++++++++++++++++++++ debian/control | 2 +- debian/libosmo-rspro0.install | 1 - src/Makefile.am | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) delete mode 100644 debian/libosmo-rspro0.install diff --git a/debian/changelog b/debian/changelog index 5554597..0ff1dea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +osmo-remsim (0.2.2) unstable; urgency=medium + + [ Harald Welte ] + * rspro_client_fsm: Fix another memory leak + * remsim-apitool: Fix slotmap-create (integer needed, not string!) + * rspro_dec_msg: Simplify msgb ownership handling + * bankd_client_fsm: close IPA client connection before re-establishing it + * Check for osmo_fsm_register() error return value + * cosmetic: more comments; spelling fixes in comments + * bankd: send IPA CCM ID_ACK after receiving ID_ACK + + [ Joachim Steiger ] + * add contrib/remsim-apitool.py to control the REST-interface of osmo-remsim-server + + [ Kévin Redon ] + * remsim-apitool.py: pass IDs as integer + * client: fix help strings + + -- Harald Welte Tue, 03 Dec 2019 20:38:18 +0100 + osmo-remsim (0.2.1) unstable; urgency=medium * rspro_client_fsm/remsim_client: Fix double-free diff --git a/debian/control b/debian/control index c693fde..7638015 100644 --- a/debian/control +++ b/debian/control @@ -21,7 +21,7 @@ Vcs-Browser: http://git.osmocom.org/osmo-remsim/ Vcs-Git: git://git.osmocom.org/osmo-remsim Homepage: https://projects.osmocom.org/projects/osmo-remsim -Package: libosmo-rspro0 +Package: libosmo-rspro1 Section: libs Architecture: any Multi-Arch: same diff --git a/debian/libosmo-rspro0.install b/debian/libosmo-rspro0.install deleted file mode 100644 index 2b3a85d..0000000 --- a/debian/libosmo-rspro0.install +++ /dev/null @@ -1 +0,0 @@ -usr/lib/*/libosmo-rspro*.so.* diff --git a/src/Makefile.am b/src/Makefile.am index 165c3f7..fa0f732 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,7 +11,7 @@ AM_CFLAGS = -Wall -I$(top_srcdir)/include -I$(top_builddir)/include \ $(PCSC_CFLAGS) $(USB_CFLAGS) $(OSMOSIM_CFLAGS) \ -I$(top_srcdir)/include/osmocom/rspro -RSPRO_LIBVERSION=0:0:0 +RSPRO_LIBVERSION=1:0:0 lib_LTLIBRARIES = libosmo-rspro.la libosmo_rspro_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(RSPRO_LIBVERSION) libosmo_rspro_la_LIBADD = $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(OSMOABIS_LIBS) \