Skip to content

Commit 540ffef

Browse files
author
Christian Hergert
committed
build: release 0.94.0!
1 parent 2c1d3d2 commit 540ffef

File tree

4 files changed

+33
-9
lines changed

4 files changed

+33
-9
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
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 92)
16-
set (MONGOC_MICRO_VERSION 3)
15+
set (MONGOC_MINOR_VERSION 94)
16+
set (MONGOC_MICRO_VERSION 0)
1717
set (MONGOC_API_VERSION 1.0)
18-
set (MONGOC_VERSION 0.92.3)
18+
set (MONGOC_VERSION 0.94.0)
1919

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

NEWS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
mongo-c-driver 0.94.0
2+
=====================
3+
4+
The mongo-c-driver team is proud to announce the release of 0.94.0. This
5+
release is a followup to the previous release adding more features to be found
6+
in MongoDB 2.6.
7+
8+
You will find some new API's, bug fixes, and more documentation. Under the
9+
hood, 0.94.0 uses the new write-commands as part of MongoDB 2.6 when it
10+
discovers it is communicating with a MongoDB server. There is now a bulk
11+
operation API (See `mongoc-bulk-operation.h`).
12+
13+
Helpers for common server commands have been added. You can find most of
14+
them `mongoc-collection.h`.
15+
16+
To simply using mongo-c-driver from Windows, we've included pre-built binaries
17+
on the release page.
18+
19+
Thanks to all of the contributors this release!
20+
21+
Happy Hacking!
22+
23+
124
mongo-c-driver 0.92.0
225
=====================
326

README.rst

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

54-
The most current release is 0.92.2 which you can download here.
55-
`mongo-c-driver-0.92.2.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/0.92.2/mongo-c-driver-0.92.2.tar.gz>`_.
54+
The most current release is 0.94.0 which you can download here.
55+
`mongo-c-driver-0.94.0.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/0.94.0/mongo-c-driver-0.94.0.tar.gz>`_.
5656

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

59-
$ tar xzf mongo-c-driver-0.92.2.tar.gz
60-
$ cd mongo-c-driver-0.92.2
59+
$ tar xzf mongo-c-driver-0.94.0.tar.gz
60+
$ cd mongo-c-driver-0.94.0
6161
$ ./configure
6262
$ make
6363
$ sudo make install
@@ -68,6 +68,7 @@ To see all of the options available to you during configuration, run::
6868

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

71+
cd mongo-c-driver-0.94.0
7172
cd src\libbson
7273
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
7374
msbuild.exe ALL_BUILD.vcxproj

build/autotools/Versions.m4

Lines changed: 2 additions & 2 deletions
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], [92])
3-
m4_define([mongoc_micro_version], [3])
2+
m4_define([mongoc_minor_version], [94])
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

0 commit comments

Comments
 (0)