pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/43312?usp=email )
Change subject: Bump version: 0.2.1.11-3cb8 → 0.3.0 ......................................................................
Bump version: 0.2.1.11-3cb8 → 0.3.0
Change-Id: Idfafe6d90f210555df91a61150c7ad14be9b1015 --- M TODO-RELEASE M debian/changelog M src/Makefile.am 3 files changed, 20 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/TODO-RELEASE b/TODO-RELEASE index 9312dbd..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,4 +7,3 @@ # 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 -libosmo-asn1-tcap add osmo_asn1_tcap_TCMessage_decode() diff --git a/debian/changelog b/debian/changelog index 12a88ae..c250d88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +libosmo-asn1-tcap (0.3.0) unstable; urgency=medium + + [ Pau Espin Pedrol ] + * Add README.md + * Makefile.am: Avoid removing tcap.h during make -C src/ regen + * tests: Use mem alloc macro instead of direct calloc() call + * Use talloc to allocate asn1c decoded structs + * Introduce API osmo_asn1_tcap_TCMessage_decode() + + [ Alexander Couzens ] + * asn1: Decode ErrorCode as Integer + * tests: improve test infrastructure to support multiple test vectors + * tests: split tests into own functions + * tests: add decode tests for TCAP End tests + * asn1: remove wireshark sepcific parts + * tests: decoding: print the half decoded structure + + -- Pau Espin Pedrol pespin@sysmocom.de Thu, 20 Aug 2026 10:19:49 +0200 + libosmo-asn1-tcap (0.2.1) unstable; urgency=medium
* Remove unneeded asn1c-fixup.patch diff --git a/src/Makefile.am b/src/Makefile.am index 881c58c..359691a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -193,7 +193,7 @@ # 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=1:0:0 +LIBVERSION=2:0:1
libosmo_asn1_tcap_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_'