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

Commit 5055b92

Browse files
author
Christian Hergert
committed
build: release 0.6.6!
See NEWS for the details.
1 parent 6df94c0 commit 5055b92

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1111

1212
set (BSON_MAJOR_VERSION 0)
1313
set (BSON_MINOR_VERSION 6)
14-
set (BSON_MICRO_VERSION 5)
14+
set (BSON_MICRO_VERSION 6)
1515
set (BSON_API_VERSION 1.0)
16-
set (BSON_VERSION 0.6.5)
16+
set (BSON_VERSION 0.6.6)
1717

1818
set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
1919
set (CPACK_PACKAGE_VERSION_MAJOR ${BSON_MAJOR_VERSION})

NEWS

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
Libbson 0.6.6
2+
=============
3+
4+
Another release for your hacking pleasure!
5+
6+
First off, note that there are two ABI breaks as part of this release. We
7+
felt they were important as they will help us stablize towards a 1.0 release.
8+
It is recommended that you recompile against this version of libbson.
9+
10+
Lots of small fixes went into this release to help get things building better
11+
on various platforms. Windows support should be improved and many warnings have
12+
been cleaned up.
13+
14+
The signature of bson_realloc_func has changed to allow for context to be
15+
provided. This should help in situations where a pointer to the memory pool is
16+
required.
17+
18+
bson_destroy_with_steal() has been added so that you can steal a buffer instead
19+
of freeing it when bson_destroy() is called.
20+
21+
bson_new_from_buffer() has been added so that you can provide your own realloc
22+
function to manage the underlying buffer. This will be useful for bindings that
23+
want to integrate their memory manager for bson documents.
24+
25+
bson_value_t is a new container type that can hold any bson type.
26+
27+
I'd like to thank everyone who contributed to this release.
28+
29+
Gary Murakami
30+
Jason Carey
31+
Jose Sebastian Battig
32+
Máximo Cuadros
33+
Paul Melnikow
34+
Stefan Kaes
35+
36+
Happy hacking!
37+
138
Libbson 0.6.4
239
=============
340

build/autotools/Versions.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([bson_major_version], [0])
22
m4_define([bson_minor_version], [6])
3-
m4_define([bson_micro_version], [5])
3+
m4_define([bson_micro_version], [6])
44
m4_define([bson_version], [bson_major_version.bson_minor_version.bson_micro_version])
55

66
# bump up by 1 for every micro release with no API changes, otherwise

0 commit comments

Comments
 (0)