This repository was archived by the owner on Oct 13, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +40
-3
lines changed
Expand file tree Collapse file tree 3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1111
1212set (BSON_MAJOR_VERSION 0)
1313set (BSON_MINOR_VERSION 6)
14- set (BSON_MICRO_VERSION 5 )
14+ set (BSON_MICRO_VERSION 6 )
1515set (BSON_API_VERSION 1.0)
16- set (BSON_VERSION 0.6.5 )
16+ set (BSON_VERSION 0.6.6 )
1717
1818set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR} /COPYING" )
1919set (CPACK_PACKAGE_VERSION_MAJOR ${BSON_MAJOR_VERSION} )
Original file line number Diff line number Diff line change 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+
138Libbson 0.6.4
239=============
340
Original file line number Diff line number Diff line change 11m4_define ( [ bson_major_version] , [ 0] )
22m4_define ( [ bson_minor_version] , [ 6] )
3- m4_define ( [ bson_micro_version] , [ 5 ] )
3+ m4_define ( [ bson_micro_version] , [ 6 ] )
44m4_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
You can’t perform that action at this time.
0 commit comments