From 5055b92f129317212ad3e3ab43dd966a00a65620 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 3 Apr 2014 15:48:00 -0700 Subject: [PATCH] build: release 0.6.6! See NEWS for the details. --- CMakeLists.txt | 4 ++-- NEWS | 37 +++++++++++++++++++++++++++++++++++++ build/autotools/Versions.m4 | 2 +- 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e20ea945..5b940c87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,9 +11,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/") set (BSON_MAJOR_VERSION 0) set (BSON_MINOR_VERSION 6) -set (BSON_MICRO_VERSION 5) +set (BSON_MICRO_VERSION 6) set (BSON_API_VERSION 1.0) -set (BSON_VERSION 0.6.5) +set (BSON_VERSION 0.6.6) set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING") set (CPACK_PACKAGE_VERSION_MAJOR ${BSON_MAJOR_VERSION}) diff --git a/NEWS b/NEWS index 2ee618b3..5408e2e1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,40 @@ +Libbson 0.6.6 +============= + +Another release for your hacking pleasure! + +First off, note that there are two ABI breaks as part of this release. We +felt they were important as they will help us stablize towards a 1.0 release. +It is recommended that you recompile against this version of libbson. + +Lots of small fixes went into this release to help get things building better +on various platforms. Windows support should be improved and many warnings have +been cleaned up. + +The signature of bson_realloc_func has changed to allow for context to be +provided. This should help in situations where a pointer to the memory pool is +required. + +bson_destroy_with_steal() has been added so that you can steal a buffer instead +of freeing it when bson_destroy() is called. + +bson_new_from_buffer() has been added so that you can provide your own realloc +function to manage the underlying buffer. This will be useful for bindings that +want to integrate their memory manager for bson documents. + +bson_value_t is a new container type that can hold any bson type. + +I'd like to thank everyone who contributed to this release. + + Gary Murakami + Jason Carey + Jose Sebastian Battig + Máximo Cuadros + Paul Melnikow + Stefan Kaes + +Happy hacking! + Libbson 0.6.4 ============= diff --git a/build/autotools/Versions.m4 b/build/autotools/Versions.m4 index 0201d25c..5e86a80c 100644 --- a/build/autotools/Versions.m4 +++ b/build/autotools/Versions.m4 @@ -1,6 +1,6 @@ m4_define([bson_major_version], [0]) m4_define([bson_minor_version], [6]) -m4_define([bson_micro_version], [5]) +m4_define([bson_micro_version], [6]) m4_define([bson_version], [bson_major_version.bson_minor_version.bson_micro_version]) # bump up by 1 for every micro release with no API changes, otherwise