Skip to content
This repository has been archived by the owner on Oct 13, 2020. It is now read-only.

Commit

Permalink
build: release 0.6.6!
Browse files Browse the repository at this point in the history
See NEWS for the details.
  • Loading branch information
Christian Hergert committed Apr 3, 2014
1 parent 6df94c0 commit 5055b92
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
37 changes: 37 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
=============

Expand Down
2 changes: 1 addition & 1 deletion build/autotools/Versions.m4
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 5055b92

Please sign in to comment.