aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-08-07 21:23:57 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-08-07 21:23:57 +0200
commit505fa9eae765a31289e3a1743f606e83b9cd65d0 (patch)
tree5f798eee905a91eab3bed2d2ea53d43b02b58121
parent92ea15a53f53e7169bbe357b402863c1b03cb3cd (diff)
Bump version: 0.4.0.14-92ea-dirty → 0.5.00.5.0
-rw-r--r--configure.ac12
-rw-r--r--debian/changelog30
-rw-r--r--debian/control7
-rw-r--r--src/Makefile.am2
4 files changed, 40 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac
index dc3d1eb..4293635 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,12 +33,12 @@ if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
fi
PKG_PROG_PKG_CONFIG([0.20])
-PKG_CHECK_MODULES(OSMOCORE, libosmocore >= 0.11.0)
-PKG_CHECK_MODULES(OSMOGSM, libosmogsm >= 0.11.0)
-PKG_CHECK_MODULES(OSMOVTY, libosmovty >= 0.11.0)
-PKG_CHECK_MODULES(OSMOCTRL, libosmoctrl >= 0.11.0)
-PKG_CHECK_MODULES(OSMONETIF, libosmo-netif >= 0.2.0)
-PKG_CHECK_MODULES(OSMOSIGTRAN, libosmo-sigtran >= 0.9.0)
+PKG_CHECK_MODULES(OSMOCORE, libosmocore >= 0.12.0)
+PKG_CHECK_MODULES(OSMOGSM, libosmogsm >= 0.12.0)
+PKG_CHECK_MODULES(OSMOVTY, libosmovty >= 0.12.0)
+PKG_CHECK_MODULES(OSMOCTRL, libosmoctrl >= 0.12.0)
+PKG_CHECK_MODULES(OSMONETIF, libosmo-netif >= 0.3.0)
+PKG_CHECK_MODULES(OSMOSIGTRAN, libosmo-sigtran >= 0.10.0)
PKG_CHECK_MODULES(ASN1C, libasn1c >= 0.9.30)
AC_CONFIG_MACRO_DIR([m4])
diff --git a/debian/changelog b/debian/changelog
index 26f7525..cdf7a94 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,33 @@
+osmo-iuh (0.5.0) unstable; urgency=medium
+
+ [ Neels Hofmeyr ]
+ * ranap_msg_factory.h: fix enum def within function signature
+ * osmo-hnbgw: fix cmdline: do not force-disable colored logging
+ * osmo-hnbgw: set a proper talloc ctx for logging
+ * osmo-hnbgw: logging tweaks
+ * osmo-hnbgw: reply with RESET ACK when receiving a RESET
+
+ [ Oliver Smith ]
+ * tests: use -no-install libtool flag to avoid ./lt-* scripts
+ * contrib/jenkins.sh: run "make maintainer-clean"
+ * osmo-hnbgw.cfg: set local-ip to 0.0.0.0
+
+ [ Harald Welte ]
+ * iu_client: Implement transmission of ResetAcknowledge
+ * ranap_msg_factory: Fix criticality of PDUs
+
+ [ Thorsten Alteholz ]
+ * spelling stuff found by lintian
+
+ [ Daniel Willmann ]
+ * Add VTY reference manual
+ * jenkins: Enable manual publishing and building
+
+ [ Pau Espin Pedrol ]
+ * Remove undefined param passed to {logging,osmo_stats}_vty_add_cmds
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Wed, 07 Aug 2019 21:23:57 +0200
+
osmo-iuh (0.4.0) unstable; urgency=medium
[ Bernhard M. Wiedemann ]
diff --git a/debian/control b/debian/control
index b453eea..7e760acb 100644
--- a/debian/control
+++ b/debian/control
@@ -11,10 +11,9 @@ Build-Depends: debhelper (>=9),
git,
libasn1c-dev,
libsctp-dev,
- libosmo-netif-dev,
- libosmocore-dev,
- libosmo-netif-dev,
- libosmo-sigtran-dev (>= 0.8.0),
+ libosmocore-dev (>= 0.12.0),
+ libosmo-netif-dev (>= 0.3.0),
+ libosmo-sigtran-dev (>= 0.10.0),
python (>= 2.7)
Standards-Version: 3.9.8
Vcs-Git: git://git.osmocom.org/osmo-iuh.git
diff --git a/src/Makefile.am b/src/Makefile.am
index 586c689..928092f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -48,7 +48,7 @@ AM_CFLAGS = -Wall -I$(top_srcdir)/include -I$(top_builddir)/include \
# build the shared RANAP library
#
-RANAP_LIBVERSION=2:1:0
+RANAP_LIBVERSION=2:2:0
lib_LTLIBRARIES = libosmo-ranap.la
libosmo_ranap_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(RANAP_LIBVERSION)
libosmo_ranap_la_LIBADD = $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(OSMOVTY_LIBS) $(OSMOSIGTRAN_LIBS) \