Skip to content

Commit 3eaf73e

Browse files
committed
1.2.0-beta1 Release
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
1 parent f6e2dc6 commit 3eaf73e

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
2020
set (MONGOC_MAJOR_VERSION 1)
2121
set (MONGOC_MINOR_VERSION 2)
2222
set (MONGOC_MICRO_VERSION 0)
23-
set (MONGOC_PRERELEASE_VERSION beta2-dev)
23+
set (MONGOC_PRERELEASE_VERSION beta1)
2424
set (MONGOC_API_VERSION 1.0)
25-
set (MONGOC_VERSION 1.2.0-beta2-dev)
25+
set (MONGOC_VERSION 1.2.0-beta1)
2626

2727
set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
2828
set (CPACK_PACKAGE_VERSION_MAJOR ${MONGOC_MAJOR_VERSION})

NEWS

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
mongo-c-driver 1.2.0-beta1
2+
==========================
3+
4+
It is my pleasure to announce the second beta release of the MongoDB C driver
5+
1.2.0. It includes features and bugfixes developed since 1.2.0-beta.
6+
7+
New features:
8+
9+
* Set mongoc_client_pool_t's size with mongoc_client_pool_min_size()
10+
and mongoc_client_pool_max_size().
11+
* The write concern "w=-1" is now documented as obsolete.
12+
* Abundant fixes and additions to the documentation, beyond those in the
13+
previous beta.
14+
15+
Notable bugs fixed:
16+
17+
* Crashes and races in several replica set scenarios.
18+
* The driver now uses the server's maxWireVersion to avoid an error and
19+
extra round-trip when executing aggregations on MongoDB 2.4 and older.
20+
* Fixed network error handling in multiple code paths.
21+
* connectTimeoutMS limits the time the driver can spend reconnecting to
22+
servers in single-threaded (non-pooled) mode with serverSelectionTryOnce.
23+
24+
Version 1.2.0 final will be a stable release with additive ABI changes and
25+
bugfixes. It is compatible with MongoDB version 2.4 and later.
26+
27+
Thanks to everyone who contributed to this version of libmongoc.
28+
29+
* A. Jesse Jiryu Davis
30+
* Hannes Magnusson
31+
* Manuel Schoenlaub
32+
* Kyle Suarez
33+
* Remi Collet
34+
35+
Peace,
36+
37+
A. Jesse Jiryu Davis
38+
139
mongo-c-driver 1.2.0-beta
240
=========================
341

build/autotools/Versions.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
m4_define([mongoc_major_version], [1])
22
m4_define([mongoc_minor_version], [2])
33
m4_define([mongoc_micro_version], [0])
4-
m4_define([mongoc_prerelease_version], [beta2-dev])
4+
m4_define([mongoc_prerelease_version], [beta1])
55

66
m4_define(
77
[mongoc_version],

0 commit comments

Comments
 (0)