Skip to content

Commit

Permalink
build: release 0.94.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Hergert committed Apr 4, 2014
1 parent 2c1d3d2 commit 540ffef
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ include(FindBSON REQUIRED)
set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")

set (MONGOC_MAJOR_VERSION 0)
set (MONGOC_MINOR_VERSION 92)
set (MONGOC_MICRO_VERSION 3)
set (MONGOC_MINOR_VERSION 94)
set (MONGOC_MICRO_VERSION 0)
set (MONGOC_API_VERSION 1.0)
set (MONGOC_VERSION 0.92.3)
set (MONGOC_VERSION 0.94.0)

set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
set (CPACK_PACKAGE_VERSION_MAJOR ${MONGOC_MAJOR_VERSION})
Expand Down
23 changes: 23 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
mongo-c-driver 0.94.0
=====================

The mongo-c-driver team is proud to announce the release of 0.94.0. This
release is a followup to the previous release adding more features to be found
in MongoDB 2.6.

You will find some new API's, bug fixes, and more documentation. Under the
hood, 0.94.0 uses the new write-commands as part of MongoDB 2.6 when it
discovers it is communicating with a MongoDB server. There is now a bulk
operation API (See `mongoc-bulk-operation.h`).

Helpers for common server commands have been added. You can find most of
them `mongoc-collection.h`.

To simply using mongo-c-driver from Windows, we've included pre-built binaries
on the release page.

Thanks to all of the contributors this release!

Happy Hacking!


mongo-c-driver 0.92.0
=====================

Expand Down
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ Building from Release Tarball
Unless you intend on contributing to the mongo-c-driver, you will want to build
from a release tarball.

The most current release is 0.92.2 which you can download here.
`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>`_.
The most current release is 0.94.0 which you can download here.
`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>`_.

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

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

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

cd mongo-c-driver-0.94.0
cd src\libbson
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
msbuild.exe ALL_BUILD.vcxproj
Expand Down
4 changes: 2 additions & 2 deletions build/autotools/Versions.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
m4_define([mongoc_major_version], [0])
m4_define([mongoc_minor_version], [92])
m4_define([mongoc_micro_version], [3])
m4_define([mongoc_minor_version], [94])
m4_define([mongoc_micro_version], [0])
m4_define([mongoc_version], [mongoc_major_version.mongoc_minor_version.mongoc_micro_version])

# bump up by 1 for every micro release with no API changes, otherwise
Expand Down

0 comments on commit 540ffef

Please sign in to comment.