Skip to content

Commit 2991dfb

Browse files
committed
Release 1.1.2
Signed-off-by: Jason Carey (hanumantmk) <[email protected]>
1 parent 99481fd commit 2991dfb

File tree

8 files changed

+73
-23
lines changed

8 files changed

+73
-23
lines changed

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1313

1414
set (MONGOC_MAJOR_VERSION 1)
1515
set (MONGOC_MINOR_VERSION 1)
16-
set (MONGOC_MICRO_VERSION 1)
16+
set (MONGOC_MICRO_VERSION 2)
1717
set (MONGOC_API_VERSION 1.0)
18-
set (MONGOC_VERSION 1.1.1)
18+
set (MONGOC_VERSION 1.1.2)
1919

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

Diff for: NEWS

+38
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
mongo-c-driver 1.1.2
2+
====================
3+
4+
It is my pleasure to announce to you the 1.1.2 release of the MongoDB C driver.
5+
6+
This release is a stable release with performance enhancements and bugfixes.
7+
8+
Changes include:
9+
* Process connectTimeoutMS cast insensitively
10+
* Addition of missing trace macros
11+
* Improvement of internal error messages
12+
* Fix a segfault in OpenSSL cleanup routines
13+
* Fix for IPv66 support for replica sets
14+
* Coalesce small vectorized TLS writes
15+
* MinGW fixups
16+
* Fix for a memory leak in get_database_names()
17+
* Fixes for patching write concern through the bulk api
18+
* Fix to normalize hostnames in uri parsing
19+
* Fix for managing connections in the client pool
20+
* Various other fixes
21+
22+
Thanks to everyone who contributed to the development of this point release for
23+
libmongoc.
24+
25+
* Andrew Clayton
26+
* Denis Gladkikh
27+
* Hannes Magnusson
28+
* Jason Carey
29+
* Jeremy Mikola
30+
* mschoenlaub
31+
* Samantha Ritter
32+
* Tyler Brock
33+
34+
Enjoy!
35+
36+
-- Jason Carey
37+
38+
139
mongo-c-driver 1.1.0
240
====================
341

Diff for: README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ communications to ascertain the necessary details, delaying a useful response.
6262
Here is a made-up example of a help request that provides the relevant
6363
information:
6464

65-
Hello, I'm trying to build the C driver with SSL, from mongo-c-driver-1.1.1.tar.gz. I'm on Ubuntu
65+
Hello, I'm trying to build the C driver with SSL, from mongo-c-driver-1.1.2.tar.gz. I'm on Ubuntu
6666
14.04, 64-bit Intel, with gcc 4.8.2. I run configure like::
6767

6868
$ ./configure --enable-sasl=yes
@@ -95,13 +95,13 @@ Building from Release Tarball
9595
Unless you intend on contributing to the mongo-c-driver, you will want to build
9696
from a release tarball.
9797

98-
The most current release is 1.1.1 which you can download here.
99-
`mongo-c-driver-1.1.1.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.1/mongo-c-driver-1.1.1.tar.gz>`_.
98+
The most current release is 1.1.2 which you can download here.
99+
`mongo-c-driver-1.1.2.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.2/mongo-c-driver-1.1.2.tar.gz>`_.
100100

101101
To build on UNIX-like systems, do the following::
102102

103-
$ tar xzf mongo-c-driver-1.1.1.tar.gz
104-
$ cd mongo-c-driver-1.1.1
103+
$ tar xzf mongo-c-driver-1.1.2.tar.gz
104+
$ cd mongo-c-driver-1.1.2
105105
$ ./configure
106106
$ make
107107
$ sudo make install
@@ -112,7 +112,7 @@ To see all of the options available to you during configuration, run::
112112

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

115-
cd mongo-c-driver-1.1.1
115+
cd mongo-c-driver-1.1.2
116116
cd src\libbson
117117
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
118118
msbuild.exe ALL_BUILD.vcxproj

Diff for: build/autotools/Versions.m4

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
m4_define([mongoc_major_version], [1])
22
m4_define([mongoc_minor_version], [1])
3-
m4_define([mongoc_micro_version], [1])
3+
m4_define([mongoc_micro_version], [2])
44
m4_define([mongoc_version], [mongoc_major_version.mongoc_minor_version.mongoc_micro_version])
55

66
# bump up by 1 for every micro release with no API changes, otherwise
77
# set to 0. after release, bump up by 1
8-
m4_define([mongoc_interface_age], [1])
8+
m4_define([mongoc_interface_age], [2])
99
m4_define([mongoc_binary_age], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version)])
1010

1111
m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version - mongoc_interface_age)])
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], [1.1.0])
15+
m4_define([libbson_required_version], [1.1.2])
1616

1717
m4_define([sasl_required_version], [2.1.6])

Diff for: build/rpm/mongo-c-driver.spec

+8-2
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.1
4+
%define DriverVersion 1.1.2
55
%define BsonName libbson
6-
%define BsonVersion 1.1.1
6+
%define BsonVersion 1.1.2
77

88
Name: %{DriverName}
99
Version: %{DriverVersion}
@@ -117,6 +117,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
117117

118118

119119
%changelog -n %{DriverName}
120+
* Tue Mar 10 2015 Jason Carey <[email protected]> - 1.1.2-1
121+
- Release 1.1.2.
122+
120123
* Wed Jan 28 2015 Jason Carey <[email protected]> - 1.1.1-1
121124
- Post-release bump for 1.1.0
122125

@@ -167,6 +170,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
167170

168171

169172
%changelog -n %{BsonName}
173+
* Tue Mar 10 2015 Jason Carey <[email protected]> - 1.1.2-1
174+
- Release 1.1.2.
175+
170176
* Wed Jan 28 2015 Jason Carey <[email protected]> - 1.1.1-1
171177
- Post-release bump for 1.1.0
172178

Diff for: debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
mongo-c-driver (1.1.2-0) unstable; urgency=low
2+
3+
* Release 1.1.2
4+
5+
-- Jason Carey <[email protected]> Tue, 10 Mar 2015 17:20:19 -0400
6+
17
mongo-c-driver (1.1.1-0) unstable; urgency=low
28

39
* Post-Release bump to 1.1.1

Diff for: doc/installing.page

+8-8
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@
5858

5959
<p>The following instructions are for UNIX-like systems such as GNU/Linux, FreeBSD, and Solaris. To build on Windows, see the instructions for <link xref="installing#building-windows">Building on Windows</link>.</p>
6060

61-
<p>The most recent release of the mongo-c-driver is 1.1.1 and can be <link href="https://github.com/mongodb/mongo-c-driver/releases/download/1.1.1/mongo-c-driver-1.1.1.tar.gz">downloaded here</link>. The following snippet will download and extract the current release of the driver.</p>
61+
<p>The most recent release of the mongo-c-driver is 1.1.2 and can be <link href="https://github.com/mongodb/mongo-c-driver/releases/download/1.1.2/mongo-c-driver-1.1.2.tar.gz">downloaded here</link>. The following snippet will download and extract the current release of the driver.</p>
6262

63-
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/mongo-c-driver/releases/download/1.1.1/mongo-c-driver-1.1.1.tar.gz</input>
64-
<output style="prompt">$ </output><input>tar -xzf mongo-c-driver-1.1.1.tar.gz</input>
65-
<output style="prompt">$ </output><input>cd mongo-c-driver-1.1.1/</input></screen>
63+
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/mongo-c-driver/releases/download/1.1.2/mongo-c-driver-1.1.2.tar.gz</input>
64+
<output style="prompt">$ </output><input>tar -xzf mongo-c-driver-1.1.2.tar.gz</input>
65+
<output style="prompt">$ </output><input>cd mongo-c-driver-1.1.2/</input></screen>
6666

6767
<p>Minimal dependencies are needed to build the MongoDB C driver. Optionally, if you want Kerberos (GSSAPI) or SSL support, you need to install <code>libsasl2</code> and <code>OpenSSL</code> libraries and development headers respectively.</p>
6868

@@ -129,8 +129,8 @@ Install man pages : yes
129129
<p>The following commands will download the most recent MongoDB binary release and install it using the <code>pkgadd</code> command on Solaris 10.</p>
130130
<screen><output style="prompt">$ </output><input>bash</input>
131131
<output style="prompt">bash-3.2$ </output><input>export ARCH=`uname -m`</input>
132-
<output style="prompt">bash-3.2$ </output><input>/usr/sfw/bin/wget --no-check-certificate "https://github.com/mongodb/mongo-c-driver/releases/download/1.1.1/MONGOmongo-c-driver-1.1.1.${ARCH}.pkg.tar.gz"</input>
133-
<output style="prompt">bash-3.2$ </output><input>gunzip -c "MONGOmongo-c-driver-1.1.1.${ARCH}.pkg.tar.gz" | tar -xf -</input>
132+
<output style="prompt">bash-3.2$ </output><input>/usr/sfw/bin/wget --no-check-certificate "https://github.com/mongodb/mongo-c-driver/releases/download/1.1.2/MONGOmongo-c-driver-1.1.2.${ARCH}.pkg.tar.gz"</input>
133+
<output style="prompt">bash-3.2$ </output><input>gunzip -c "MONGOmongo-c-driver-1.1.2.${ARCH}.pkg.tar.gz" | tar -xf -</input>
134134
<output style="prompt">bash-3.2$ </output><input>pkgadd -d . MONGOmongo-c-driver</input></screen>
135135

136136
</section>
@@ -142,7 +142,7 @@ Install man pages : yes
142142

143143
<p>Let's start by generating Visual Studio project files for libbson, a dependency of the C driver. The following assumes we are compiling for 64-bit Windows using Visual Studio 2010 Express which can be freely downloaded from Microsoft.</p>
144144

145-
<screen>cd mongo-c-driver-1.1.1\src\libbson
145+
<screen>cd mongo-c-driver-1.1.2\src\libbson
146146
cmake -G "Visual Studio 10 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver"</screen>
147147

148148
<p>Now that we have project files generated, we can either open the project in Visual Studio or compile from the command line. Let's build using the command line program <code>msbuild.exe</code></p>
@@ -157,7 +157,7 @@ cmake -G "Visual Studio 10 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver"</sc
157157

158158
<p>Now let's do the same for the MongoDB C driver.</p>
159159

160-
<screen>cd mongo-c-driver-1.1.1
160+
<screen>cd mongo-c-driver-1.1.2
161161
cmake -G "Visual Studio 2010 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver" "-DBSON_ROOT_DIR=C:\mongo-c-driver"
162162
msbuild.exe ALL_BUILD.vcxproj
163163
msbuild.exe INSTALL.vcxproj</screen>

Diff for: doc/mongoc_version.page

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

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

0 commit comments

Comments
 (0)