Skip to content

Commit 4d9581b

Browse files
author
Christian Hergert
committed
Release 0.98.0!
Signed-off-by: Christian Hergert <[email protected]>
1 parent fd49c61 commit 4d9581b

File tree

8 files changed

+61
-24
lines changed

8 files changed

+61
-24
lines changed

Diff for: CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ include(FindBSON REQUIRED)
1212
set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1313

1414
set (MONGOC_MAJOR_VERSION 0)
15-
set (MONGOC_MINOR_VERSION 96)
16-
set (MONGOC_MICRO_VERSION 5)
15+
set (MONGOC_MINOR_VERSION 98)
16+
set (MONGOC_MICRO_VERSION 0)
1717
set (MONGOC_API_VERSION 1.0)
18-
set (MONGOC_VERSION 0.96.5)
18+
set (MONGOC_VERSION 0.98.0)
1919

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

Diff for: NEWS

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
mongo-c-driver 0.98.0
2+
=====================
3+
4+
Another step in the rapidly approaching path to 1.0!
5+
6+
This release is primarily a bugfix release and stablization effort as we
7+
approach 1.0 of the MongoDB C driver.
8+
9+
This release requires 0.98.0 of Libbson for improvements to the memory
10+
management system. You can now setup custom memory allocators at the
11+
start of the process.
12+
13+
This is a RC release that with a few improvements will likely become 1.0.
14+
15+
A special thanks to the following for patches in this cycle:
16+
17+
* Kyle Suarez
18+
* yuqing
19+
20+
See `git shortlog 0.96.4..0.98.0` for a list of all the changes.
21+
22+
-- Christian Hergert
23+
24+
125
mongo-c-driver 0.96.4
226
=====================
327

Diff for: README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ Building from Release Tarball
5252
Unless you intend on contributing to the mongo-c-driver, you will want to build
5353
from a release tarball.
5454

55-
The most current release is 0.96.4 which you can download here.
56-
`mongo-c-driver-0.96.4.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/0.96.4/mongo-c-driver-0.96.4.tar.gz>`_.
55+
The most current release is 0.98.0 which you can download here.
56+
`mongo-c-driver-0.98.0.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/0.98.0/mongo-c-driver-0.98.0.tar.gz>`_.
5757

5858
To build on UNIX-like systems, do the following::
5959

60-
$ tar xzf mongo-c-driver-0.96.4.tar.gz
61-
$ cd mongo-c-driver-0.96.4
60+
$ tar xzf mongo-c-driver-0.98.0.tar.gz
61+
$ cd mongo-c-driver-0.98.0
6262
$ ./configure
6363
$ make
6464
$ sudo make install
@@ -69,7 +69,7 @@ To see all of the options available to you during configuration, run::
6969

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

72-
cd mongo-c-driver-0.96.4
72+
cd mongo-c-driver-0.98.0
7373
cd src\libbson
7474
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
7575
msbuild.exe ALL_BUILD.vcxproj

Diff for: build/autotools/Versions.m4

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([mongoc_major_version], [0])
2-
m4_define([mongoc_minor_version], [96])
3-
m4_define([mongoc_micro_version], [5])
2+
m4_define([mongoc_minor_version], [98])
3+
m4_define([mongoc_micro_version], [0])
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
@@ -12,6 +12,6 @@ m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_versi
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], [0.8.5])
15+
m4_define([libbson_required_version], [0.98.0])
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 0.96.5
4+
%define DriverVersion 0.98.0
55
%define BsonName libbson
6-
%define BsonVersion 0.8.5
6+
%define BsonVersion 0.98.0
77

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

114114

115115
%changelog -n %{DriverName}
116+
* Tue Jul 16 2014 Christian Hergert <[email protected]> - 0.98.0-1
117+
- Bump for 0.98.0.
118+
116119
* Tue Jun 20 2014 Christian Hergert <[email protected]> - 0.96.5-1
117120
- Bump for development releases.
118121

@@ -133,6 +136,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
133136

134137

135138
%changelog -n %{BsonName}
139+
* Tue Jul 16 2014 Christian Hergert <[email protected]> - 0.98.0-1
140+
- Bump for 0.98.0.
141+
136142
* Tue Jun 20 2014 Christian Hergert <[email protected]> - 0.8.5-1
137143
- Bump for development releases.
138144

Diff for: debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
mongo-c-driver (0.98.0-0) unstable; urgency=low
2+
3+
* Bump for 0.98.0.
4+
5+
-- Christian Hergert <[email protected]> Wed, 16 Jul 2014 14:16:36 -0700
6+
7+
18
mongo-c-driver (0.96.5-0) unstable; urgency=low
29

310
* Bump for development releases.

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 0.96.4 and can be <link href="https://github.com/mongodb/mongo-c-driver/releases/download/0.96.4/mongo-c-driver-0.96.4.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 0.98.0 and can be <link href="https://github.com/mongodb/mongo-c-driver/releases/download/0.98.0/mongo-c-driver-0.98.0.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/0.96.4/mongo-c-driver-0.96.4.tar.gz</input>
64-
<output style="prompt">$ </output><input>tar -xzf mongo-c-driver-0.96.4.tar.gz</input>
65-
<output style="prompt">$ </output><input>cd mongo-c-driver-0.96.4/</input></screen>
63+
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/mongo-c-driver/releases/download/0.98.0/mongo-c-driver-0.98.0.tar.gz</input>
64+
<output style="prompt">$ </output><input>tar -xzf mongo-c-driver-0.98.0.tar.gz</input>
65+
<output style="prompt">$ </output><input>cd mongo-c-driver-0.98.0/</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

@@ -132,8 +132,8 @@ Python (experimental) : no
132132
<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>
133133
<screen><output style="prompt">$ </output><input>bash</input>
134134
<output style="prompt">bash-3.2$ </output><input>export ARCH=`uname -m`</input>
135-
<output style="prompt">bash-3.2$ </output><input>/usr/sfw/bin/wget --no-check-certificate "https://github.com/mongodb/mongo-c-driver/releases/download/0.96.4/MONGOmongo-c-driver-0.96.4.${ARCH}.pkg.tar.gz"</input>
136-
<output style="prompt">bash-3.2$ </output><input>gunzip -c "MONGOmongo-c-driver-0.96.4.${ARCH}.pkg.tar.gz" | tar -xf -</input>
135+
<output style="prompt">bash-3.2$ </output><input>/usr/sfw/bin/wget --no-check-certificate "https://github.com/mongodb/mongo-c-driver/releases/download/0.98.0/MONGOmongo-c-driver-0.98.0.${ARCH}.pkg.tar.gz"</input>
136+
<output style="prompt">bash-3.2$ </output><input>gunzip -c "MONGOmongo-c-driver-0.98.0.${ARCH}.pkg.tar.gz" | tar -xf -</input>
137137
<output style="prompt">bash-3.2$ </output><input>pkgadd -d . MONGOmongo-c-driver</input></screen>
138138

139139
</section>
@@ -145,7 +145,7 @@ Python (experimental) : no
145145

146146
<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>
147147

148-
<screen>cd mongo-c-driver-0.96.4\src\libbson
148+
<screen>cd mongo-c-driver-0.98.0\src\libbson
149149
cmake -G "Visual Studio 10 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver"</screen>
150150

151151
<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>
@@ -160,7 +160,7 @@ cmake -G "Visual Studio 10 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver"</sc
160160

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

163-
<screen>cd mongo-c-driver-0.96.4
163+
<screen>cd mongo-c-driver-0.98.0
164164
cmake -G "Visual Studio 2010 Win64" "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver" "-DBSON_ROOT_DIR=C:\mongo-c-driver"
165165
msbuild.exe ALL_BUILD.vcxproj
166166
msbuild.exe INSTALL.vcxproj</screen>

Diff for: doc/mongoc_version.page

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

1818
#define MONGOC_MAJOR_VERSION (0)
19-
#define MONGOC_MINOR_VERSION (96)
20-
#define MONGOC_MICRO_VERSION (5)
21-
#define MONGOC_VERSION_S "0.96.5"
19+
#define MONGOC_MINOR_VERSION (98)
20+
#define MONGOC_MICRO_VERSION (0)
21+
#define MONGOC_VERSION_S "0.98.0"
2222
#define MONGOC_VERSION_HEX ((0 << 24) | (94 << 16) | (2 << 8) | 0)
2323
#define MONGOC_CHECK_VERSION(major, minor, micro)
2424
]]></screen>

0 commit comments

Comments
 (0)