Bump version: 0.2.1.10-35d9-dirty → 0.2.2

Change-Id: I77c86455f9c36c16271bc8e7f8f3f72d682d23fd
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 <laforge@osmocom.org>  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-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 @@
 	    $(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) \