Skip to content

Commit c455260

Browse files
committed
1.2.0-rc0 Release
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
1 parent 5c9d4b2 commit c455260

File tree

7 files changed

+51
-16
lines changed

7 files changed

+51
-16
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 rc0)
2424
set (MONGOC_API_VERSION 1.0)
25-
set (MONGOC_VERSION 1.2.0-beta2-dev)
25+
set (MONGOC_VERSION 1.2.0-rc0)
2626

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

NEWS

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,46 @@
11
mongo-c-driver 1.2.0-rc0
22
========================
33

4-
Changes:
4+
It is my pleasure to announce the release candidate of the MongoDB C driver
5+
1.2.0. It includes features and bugfixes developed since 1.2.0-beta1.
56

7+
Notable bugs fixed:
8+
9+
* Much improved reporting of network errors, unavailable servers, and
10+
authentication failure
11+
* Destroying an exhaust cursor must close its socket
12+
* Various bugs in server reconnection logic
13+
* mongoc_collection_aggregate returned invalid cursor after failure
14+
* Wrong error message after failed network write on Sparc
15+
* Missing JSON test files in release tarball
16+
17+
Other changes:
18+
19+
* Enable runtime asserts in release build.
620
* mongoc_client_kill_cursor is now deprecated and will be removed in
721
version 2.0.
822

23+
This release candidate also includes all bugfixes from 1.1.11.
24+
25+
Version 1.2.0 final will be a stable release with additive ABI changes and
26+
bugfixes. It is compatible with MongoDB version 2.4 and later.
27+
28+
Thanks to everyone who contributed to this version of libmongoc.
29+
30+
* A. Jesse Jiryu Davis
31+
* Hannes Magnusson
32+
* Kyle Suarez
33+
* rubicks
34+
* Jose Sebastian Battig
35+
* Jason Carey
36+
* Remi Collet
37+
* Yuval Hager
38+
39+
Peace,
40+
41+
A. Jesse Jiryu Davis
42+
43+
944
mongo-c-driver 1.2.0-beta1
1045
==========================
1146

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ Building from Release Tarball
9292
Unless you intend on contributing to the mongo-c-driver, you will want to build
9393
from a release tarball.
9494

95-
The most current release is 1.2.0 which you can download here.
96-
`mongo-c-driver-1.2.0.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.2.0/mongo-c-driver-1.2.0.tar.gz>`_.
95+
The most current release is 1.1.11 which you can download here.
96+
`mongo-c-driver-1.1.11.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.11/mongo-c-driver-1.1.11.tar.gz>`_.
9797

9898
To build on UNIX-like systems, do the following::
9999

100-
$ tar xzf mongo-c-driver-1.2.0.tar.gz
101-
$ cd mongo-c-driver-1.2.0
100+
$ tar xzf mongo-c-driver-1.1.11.tar.gz
101+
$ cd mongo-c-driver-1.1.11
102102
$ ./configure
103103
$ make
104104
$ sudo make install
@@ -109,7 +109,7 @@ To see all of the options available to you during configuration, run::
109109

110110
To build on Windows Vista or newer with Visual Studio 2010, do the following::
111111

112-
cd mongo-c-driver-1.2.0
112+
cd mongo-c-driver-1.1.11
113113
cd src\libbson
114114
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
115115
msbuild.exe ALL_BUILD.vcxproj

build/autotools/Versions.m4

Lines changed: 2 additions & 2 deletions
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], [rc0])
55

66
m4_define(
77
[mongoc_version],
@@ -19,6 +19,6 @@ m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_versi
1919
m4_define([lt_revision], [mongoc_interface_age])
2020
m4_define([lt_age], [m4_eval(mongoc_binary_age - mongoc_interface_age)])
2121

22-
m4_define([libbson_required_version], [1.2.0-beta])
22+
m4_define([libbson_required_version], [1.2.0-rc0])
2323

2424
m4_define([sasl_required_version], [2.1.6])

build/rpm/mongo-c-driver.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# norootforbuild
22

33
%define DriverName mongo-c-driver
4-
%define DriverVersion 1.1.11
4+
%define DriverVersion 1.2.0-rc0
55
%define BsonName libbson
6-
%define BsonVersion 1.1.11
6+
%define BsonVersion 1.2.0-rc0
77

88
Name: %{DriverName}
99
Version: %{DriverVersion}

doc/mongoc_version.page

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<screen><![CDATA[#include <mongoc.h>
1717

1818
#define MONGOC_MAJOR_VERSION (1)
19-
#define MONGOC_MINOR_VERSION (1)
20-
#define MONGOC_MICRO_VERSION (11)
21-
#define MONGOC_VERSION_S "1.1.11"
19+
#define MONGOC_MINOR_VERSION (2)
20+
#define MONGOC_MICRO_VERSION (0)
21+
#define MONGOC_VERSION_S "1.2.0-rc0"
2222
#define MONGOC_VERSION_HEX ((1 << 24) | (0 << 16) | (0 << 8) | 0)
2323
#define MONGOC_CHECK_VERSION(major, minor, micro)
2424
]]></screen>

src/libbson

Submodule libbson updated 217 files

0 commit comments

Comments
 (0)