Skip to content

Commit a13cd5f

Browse files
committed
Release 1.1.5
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
2 parents eee9882 + 295f621 commit a13cd5f

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1414
set (MONGOC_MAJOR_VERSION 1)
1515
set (MONGOC_MINOR_VERSION 1)
1616
set (MONGOC_MICRO_VERSION 5)
17-
set (MONGOC_PRERELEASE_VERSION dev)
17+
set (MONGOC_PRERELEASE_VERSION )
1818
set (MONGOC_API_VERSION 1.0)
19-
set (MONGOC_VERSION 1.1.5-dev)
19+
set (MONGOC_VERSION 1.1.5)
2020

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

Diff for: NEWS

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
mongo-c-driver 1.1.5
22
====================
33

4-
It is my pleasure to announce to you the 1.1.4 release of the MongoDB C driver.
4+
It is my pleasure to announce to you the 1.1.5 release of the MongoDB C driver.
55

66
This is a patch release with performance enhancements and bug fixes:
77

88
* The fsync and j write concern flags now imply acknowledged writes
99
* Prevent using fsync or j with conflicting w=0 write concern
1010
* Obey socket timeout consistently in TLS/SSL mode
1111
* Return an error promptly after a network hangup in TLS mode
12+
* Prevent crash using SSL in FIPS mode
1213
* Always return NULL from mongoc_database_get_collection_names on error
1314
* Fix version check for GCC 5 and future versions of Clang
1415
* Fix warnings and errors building on various platforms
16+
* Add configure flag to enable/disable shared memory performance counters
1517
* Minor docs improvements and fix links from C Driver docs to Libbson docs
1618

1719
With this release, Libbson abandons the convention that odd-numbered patch

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.4.tar.gz. I'm on Ubuntu
65+
Hello, I'm trying to build the C driver with SSL, from mongo-c-driver-1.1.5.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.4 which you can download here.
99-
`mongo-c-driver-1.1.4.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.4/mongo-c-driver-1.1.4.tar.gz>`_.
98+
The most current release is 1.1.5 which you can download here.
99+
`mongo-c-driver-1.1.5.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.5/mongo-c-driver-1.1.5.tar.gz>`_.
100100

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

103-
$ tar xzf mongo-c-driver-1.1.4.tar.gz
104-
$ cd mongo-c-driver-1.1.4
103+
$ tar xzf mongo-c-driver-1.1.5.tar.gz
104+
$ cd mongo-c-driver-1.1.5
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.4
115+
cd mongo-c-driver-1.1.5
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

+2-2
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], [1])
33
m4_define([mongoc_micro_version], [5])
4-
m4_define([mongoc_prerelease_version], [dev])
4+
m4_define([mongoc_prerelease_version], [])
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.1.4])
22+
m4_define([libbson_required_version], [1.1.5])
2323

2424
m4_define([sasl_required_version], [2.1.6])

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
117117

118118

119119
%changelog -n %{DriverName}
120-
* Wed Apr 1 2015 Jason Carey <jason.carey@mongodb.com> - 1.1.5-1
121-
- Post-release bump for 1.1.4
120+
* Tue May 12 2015 A. Jesse Jiryu Davis <jesse@mongodb.com> - 1.1.5-1
121+
- Release 1.1.5
122122

123123
* Wed Apr 1 2015 Jason Carey <[email protected]> - 1.1.4-1
124124
- Release 1.1.4.
@@ -179,8 +179,8 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
179179

180180

181181
%changelog -n %{BsonName}
182-
* Wed Apr 1 2015 Jason Carey <jason.carey@mongodb.com> - 1.1.5-1
183-
- Post-release bump for 1.1.4
182+
* Tue May 12 2015 A. Jesse Jiryu Davis <jesse@mongodb.com> - 1.1.5-1
183+
- Release 1.1.5
184184

185185
* Wed Apr 1 2015 Jason Carey <[email protected]> - 1.1.4-1
186186
- Release 1.1.4.

Diff for: debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
mongo-c-driver (1.1.5-0) unstable; urgency=low
22

3-
* Post-Release bump to 1.1.5
3+
* Release 1.1.5
44

5-
-- Jason Carey <jason.carey@mongodb.com> Wed, 01 Apr 2015 14:08:09 -0400
5+
-- A. Jesse Jiryu Davis <jesse@mongodb.com> Tue, 12 May 2015 12:00:00 -0400
66

77
mongo-c-driver (1.1.4-0) unstable; urgency=low
88

0 commit comments

Comments
 (0)