Skip to content

Commit 0163ed7

Browse files
committed
build: bump for 0.92.0!
1 parent b9232d6 commit 0163ed7

File tree

4 files changed

+46
-5
lines changed

4 files changed

+46
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ include(FindBSON REQUIRED)
1212
set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1313

1414
set (MONGOC_MAJOR_VERSION 0)
15-
set (MONGOC_MINOR_VERSION 91)
15+
set (MONGOC_MINOR_VERSION 92)
1616
set (MONGOC_MICRO_VERSION 0)
1717
set (MONGOC_API_VERSION 1.0)
18-
set (MONGOC_VERSION 0.91.0)
18+
set (MONGOC_VERSION 0.92.0)
1919

2020
set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
2121
set (CPACK_PACKAGE_VERSION_MAJOR ${MONGOC_MAJOR_VERSION})

NEWS

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
mongo-c-driver 0.92.0
2+
=====================
3+
4+
The mongo-c-driver team is proud to announce the release of 0.92.0. This
5+
release is the culimation of a few months work and has many bug fixes and
6+
new features. It contains over 350 commits from 4 authors since the 0.90.0
7+
release.
8+
9+
The mongo-c-driver release tarballs now contain a bundled copy of libbson.
10+
If you do not have libbson installed or the system installed libbson is too
11+
old, the bundled copy of libbson will be installed.
12+
13+
* Revamped build system to simplify installation.
14+
* Windows Vista and newer support.
15+
* Various GridFS fixes and features.
16+
* Kerberos support via cyrus-sasl.
17+
* Various SSL improvements.
18+
* Support for Solaris 11, FreeBSD 10, RHEL 5+, and SmartOS.
19+
* A new client side expression matcher to perform basic query processing.
20+
It can perform queries such as {'field': {'$in': [1,2,3]}}. See
21+
mongoc_matcher_t for more information.
22+
* A new socket abstraction for platform independent network sockets.
23+
* A new mongoc-dump example for how to write a simple mongodump replacement.
24+
* Counters can use rdtscp instruction on Core iX systems for very fast
25+
counters.
26+
* configure has new options. If in doubt, the defaults are sensible.
27+
* --enable-coverage=yes|no
28+
* --enable-debug=yes|no
29+
* --enable-debug-symbols=yes|no
30+
* --enable-hardening=yes|no
31+
* --enable-optimizations=yes|no
32+
* --enable-ssl=yes|no
33+
* --enable-sasl=yes|no
34+
* --enable-tracing=yes|no
35+
* --with-libbson=auto|system|bundled
36+
37+
mongo-c-driver 0.92.0 requires libbson 0.6.4 or newer.
38+
39+
Happy Hacking!
40+
41+
142
Libmongoc 0.90.0
243
================
344

build/autotools/Versions.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
m4_define([mongoc_major_version], [0])
2-
m4_define([mongoc_minor_version], [91])
2+
m4_define([mongoc_minor_version], [92])
33
m4_define([mongoc_micro_version], [0])
44
m4_define([mongoc_version], [mongoc_major_version.mongoc_minor_version.mongoc_micro_version])
55

@@ -12,6 +12,6 @@ m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_versi
1212
m4_define([lt_revision], [mongoc_interface_age])
1313
m4_define([lt_age], [m4_eval(mongoc_binary_age - mongoc_interface_age)])
1414

15-
m4_define([libbson_required_version], [0.6.3])
15+
m4_define([libbson_required_version], [0.6.4])
1616

1717
m4_define([sasl_required_version], [2.1.6])

src/libbson

0 commit comments

Comments
 (0)