Skip to content

Commit

Permalink
Upgraded bson parser to 0.1.2 using gyp, deprecated support for node …
Browse files Browse the repository at this point in the history
…0.4.X
  • Loading branch information
christkv committed Aug 27, 2012
1 parent 908db15 commit 7d16c05
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 20 deletions.
5 changes: 4 additions & 1 deletion HISTORY
@@ -1,5 +1,8 @@
1.1.5
-
- Fix for eval on replicaset Issue #684
- Use helpful error msg when native parser not compiled (Issue #685, https://github.com/aheckmann)
- Arbiter connect hotfix (Issue #681, https://github.com/fengmk2)
- Upgraded bson parser to 0.1.2 using gyp, deprecated support for node 0.4.X

1.1.4 2012-08-12
----------------
Expand Down
18 changes: 1 addition & 17 deletions Makefile
Expand Up @@ -7,19 +7,6 @@ name = all
total: build_native

build_native:
# $(MAKE) -C ./external-libs/bson all

build_native_debug:
$(MAKE) -C ./external-libs/bson all_debug

build_native_clang:
$(MAKE) -C ./external-libs/bson clang

build_native_clang_debug:
$(MAKE) -C ./external-libs/bson clang_debug

clean_native:
$(MAKE) -C ./external-libs/bson clean

test: build_native
@echo "\n == Run All tests minus replicaset tests=="
Expand All @@ -41,16 +28,13 @@ test_nodeunit_pure:
@echo "\n == Execute Test Suite using Pure JS BSON Parser == "
@$(NODEUNIT) test/ test/gridstore test/bson

test_js:
@$(NODEUNIT) $(TESTS)

test_nodeunit_replicaset_pure:
@echo "\n == Execute Test Suite using Pure JS BSON Parser == "
@$(NODEUNIT) test/replicaset

test_nodeunit_native:
@echo "\n == Execute Test Suite using Native BSON Parser == "
@TEST_NATIVE=TRUE $(NODEUNIT) test/ test/gridstore test/bson
@TEST_NATIVE=TRUE $(NODEUNIT) test/ test/gridstore test/bson

test_nodeunit_replicaset_native:
@echo "\n == Execute Test Suite using Native BSON Parser == "
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -59,7 +59,7 @@
, "bugs" : { "mail" : "node-mongodb-native@googlegroups.com"
, "url" : "http://github.com/mongodb/node-mongodb-native/issues" }
, "dependencies" : {
"bson": "0.1.1"
"bson": "0.1.2"
}
, "devDependencies": {
"dox": "0.2.0"
Expand All @@ -75,7 +75,7 @@
, "config": { "native" : false }
, "main": "./lib/mongodb/index"
, "directories" : { "lib" : "./lib/mongodb" }
, "engines" : { "node" : ">=0.4.0" }
, "engines" : { "node" : ">=0.6.0" }
, "scripts": { "test" : "make test_pure" }
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
Expand Down

0 comments on commit 7d16c05

Please sign in to comment.