File tree Expand file tree Collapse file tree 3 files changed +41
-3
lines changed Expand file tree Collapse file tree 3 files changed +41
-3
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
2020set (MONGOC_MAJOR_VERSION 1)
2121set (MONGOC_MINOR_VERSION 2)
2222set (MONGOC_MICRO_VERSION 0)
23- set (MONGOC_PRERELEASE_VERSION beta2-dev )
23+ set (MONGOC_PRERELEASE_VERSION beta1 )
2424set (MONGOC_API_VERSION 1.0)
25- set (MONGOC_VERSION 1.2.0-beta2-dev )
25+ set (MONGOC_VERSION 1.2.0-beta1 )
2626
2727set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR} /COPYING" )
2828set (CPACK_PACKAGE_VERSION_MAJOR ${MONGOC_MAJOR_VERSION} )
Original file line number Diff line number Diff line change 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+
139mongo-c-driver 1.2.0-beta
240=========================
341
Original file line number Diff line number Diff line change 11m4_define ( [ mongoc_major_version] , [ 1] )
22m4_define ( [ mongoc_minor_version] , [ 2] )
33m4_define ( [ mongoc_micro_version] , [ 0] )
4- m4_define ( [ mongoc_prerelease_version] , [ beta2-dev ] )
4+ m4_define ( [ mongoc_prerelease_version] , [ beta1 ] )
55
66m4_define (
77 [ mongoc_version] ,
You can’t perform that action at this time.
0 commit comments