From: Anders Roxell <[email protected]> Signed-off-by: Anders Roxell <[email protected]> Signed-off-by: Maxim Uvarov <[email protected]> --- debian/changelog | 45 +++++++++++++++++++++++++++++++++++++++++++++ include/odp/api/version.h | 4 ++-- 2 files changed, 47 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog index 23a4485..d9d344d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,48 @@ +opendataplane (1.0.0-1) unstable; urgency=low + + * API: + - crypto, cpumask, packet_io, random: replace ssize_t with int32_t + - crypto: add session destroy function + - crypto: add error code for invalid IV + - classification: Add documentation for missing macros + - hints: add printf format attribute + - errno: add api to public api + - init: add missing documentation + - packet_io: remove specific errno value + * test: + * validation: + - Makefile.am: restructure + - pktio: free unexpected packets/events + - pktio: destroy interface specific pools + - pktio: destroy pktio input queues + - pktio: fix odp_errno usage + - buffer: split pool, buffer and packet tests + - init: include stdlib.h for abort() + - crypto: verify session_destroy + - crypto: verify odp_crypto_operation() return code + - queue: destroy created ODP resources + - errno: add sunnyday test + * miscellaneous: + - Add CPP test + * bugs: + - odp_init_log: fix clang format string error + - buffers: remove obsolete debugging code + - classification: fix unchecked return value + - classification: fix incorrect ipv4 checksum update + - example: generator: add missing doxygen documentation + - pools: switch to simple locks for buf/blk synchronization + - performance: fix c99 warnings as errors + - crypto: handle copy error + - system: read hugepage size for all architectures + - queue: fix PKTIN queue destroy + * general: + - add -std=c99 gcc flag by default, fix all warnings + - handle copy error in odp_crypto_operation + - fix all doxygen warnings + - configured defines changed ODP_CONFIG_ and moved to config.h + + -- Anders Roxell <[email protected]> Thu, 26 Feb 2015 22:30:39 +0100 + opendataplane (0.11.0-1) unstable; urgency=low * API: diff --git a/include/odp/api/version.h b/include/odp/api/version.h index 37394cd..5f2b2db 100644 --- a/include/odp/api/version.h +++ b/include/odp/api/version.h @@ -29,7 +29,7 @@ extern "C" { * very significant changes to the API. APIs with different * versions are likely not backward compatible. */ -#define ODP_VERSION_API_GENERATION 0 +#define ODP_VERSION_API_GENERATION 1 /** * ODP API major version @@ -37,7 +37,7 @@ extern "C" { * Introduction of major new features or changes. APIs with different major * versions are likely not backward compatible. */ -#define ODP_VERSION_API_MAJOR 11 +#define ODP_VERSION_API_MAJOR 0 /** * ODP API minor version -- 1.8.5.1.163.gd7aced9 _______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
