Skip to content

Commit

Permalink
CDRIVER-187 C driver 0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmurakami-10gen committed Jan 7, 2013
1 parent de11258 commit 5583f4b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
11 changes: 11 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# MongoDB C Driver History

## 0.7.1
2013-1-7

Fixes

* collections with one character name
* set socket option NOSIGPIPE for Mac OS X
* reorganize env packaging to ease build for the R driver
* add bcon to library build for Scons
* package build support with DESTDIR and PREFIX

## 0.7
2012-11-19
** API CHANGE **
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Version
MONGO_MAJOR=0
MONGO_MINOR=7
MONGO_PATCH=0
MONGO_PATCH=1
BSON_MAJOR=$(MONGO_MAJOR)
BSON_MINOR=$(MONGO_MINOR)
BSON_PATCH=$(MONGO_PATCH)
Expand Down Expand Up @@ -184,8 +184,11 @@ valgrind: $(TESTS)
docs:
python docs/buildscripts/docs.py

zip: clobber
zip -r /tmp/mongo-c-driver-$(MONGO_MAJOR).$(MONGO_MINOR).$(MONGO_PATCH).zip $(shell ls)

clean:
rm -rf src/*.o src/*.os test/*.o test/*.os test_* .scon* config.log
rm -rf src/*.o src/*.os test/*.o test/*.os test_* .scon* config.log docs/*/*.pyc

clobber: clean
rm -rf $(MONGO_DYLIBNAME) $(MONGO_STLIBNAME) $(BSON_DYLIBNAME) $(BSON_STLIBNAME) docs/html docs/source/doxygen
Expand All @@ -205,4 +208,4 @@ test_%: test/%_test.c test/test.h $(MONGO_STLIBNAME)
%.os: %.c
$(CC) -o $@ -c $(ALL_CFLAGS) $(DYN_FLAGS) $<

.PHONY: 32bit all clean clobber deps docs install test valgrind
.PHONY: 32bit all clean clobber deps docs install test valgrind zip
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MAJOR_VERSION = "0"
MINOR_VERSION = "7"
PATCH_VERSION = "0"
PATCH_VERSION = "1"
VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + PATCH_VERSION

# --- options ----
Expand Down
4 changes: 2 additions & 2 deletions docs/source/sphinx/source/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Building the MongoDB C Driver
=============================

First checkout the version you want to build. *Always build from a particular tag, since HEAD may be
a work in progress.* For example, to build version 0.7, run:
a work in progress.* For example, to build version 0.7.1, run:

.. code-block:: bash
git checkout v0.7
git checkout v0.7.1
Then follow the build steps below.

Expand Down
4 changes: 2 additions & 2 deletions docs/source/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.7'
version = '0.7.1'
# The full version, including alpha/beta/rc tags.
release = '0.7'
release = '0.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doxygenConfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = MongoDB C Driver
PROJECT_NUMBER = 0.7
PROJECT_NUMBER = 0.7.1
OUTPUT_DIRECTORY = docs/source/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down

0 comments on commit 5583f4b

Please sign in to comment.