diff --git a/Makefile b/Makefile index fd33cf8..2884427 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_RELEASE = 4 +VERSION_RELEASE = 5 # Version for pkg-config PCVERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE) diff --git a/debian/changelog b/debian/changelog index 628d292..eeed54c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +libgbinder (1.1.5) unstable; urgency=low + + * Fixed gbinder_remote_reply_copy_to_local() for empty replies + * Improved binder simulation + * Added GBinderBridge object + * Added proxy_object and bridge unit tests + * Added binder-bridge to libgbinder-tools package + + -- Slava Monich Fri, 29 Jan 2021 04:00:09 +0200 + libgbinder (1.1.4) unstable; urgency=low * Fixed a threading issue diff --git a/include/gbinder_bridge.h b/include/gbinder_bridge.h index a9a85d8..8d19635 100644 --- a/include/gbinder_bridge.h +++ b/include/gbinder_bridge.h @@ -35,7 +35,7 @@ #include "gbinder_types.h" -/* Since 1.1.4 */ +/* Since 1.1.5 */ /* * As of time of this writing, bridging only works for binder transactions @@ -66,11 +66,12 @@ gbinder_bridge_new( const char* name, const char* const* ifaces, GBinderServiceManager* src, - GBinderServiceManager* dest); + GBinderServiceManager* dest) /* Since 1.1.5 */ + G_GNUC_WARN_UNUSED_RESULT; void gbinder_bridge_free( - GBinderBridge* bridge); + GBinderBridge* bridge); /* Since 1.1.5 */ G_END_DECLS diff --git a/include/gbinder_types.h b/include/gbinder_types.h index 8b872f7..00524ee 100644 --- a/include/gbinder_types.h +++ b/include/gbinder_types.h @@ -59,7 +59,7 @@ G_BEGIN_DECLS * 6. Reader parses the data coming with RemoteRequest and RemoteReply */ -typedef struct gbinder_bridge GBinderBridge; +typedef struct gbinder_bridge GBinderBridge; /* Since 1.1.5 */ typedef struct gbinder_buffer GBinderBuffer; typedef struct gbinder_client GBinderClient; typedef struct gbinder_ipc GBinderIpc; diff --git a/rpm/libgbinder.spec b/rpm/libgbinder.spec index 41755a1..722d0da 100644 --- a/rpm/libgbinder.spec +++ b/rpm/libgbinder.spec @@ -1,5 +1,5 @@ Name: libgbinder -Version: 1.1.4 +Version: 1.1.5 Release: 0 Summary: Binder client library License: BSD