diff --git a/.travis.yml b/.travis.yml index 6dc5c5d1..d0196cfc 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: node_js node_js: - - '0.10' - - '0.11' - '0.12' - "iojs-v1.0.4" diff --git a/Makefile b/Makefile index bcacd408..a9462b60 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ VERSION := $(shell node -e "console.log(require('./package.json').version)") -.PHONY: default release smoke - test: npm test +.PHONY: test smoke: npm install --build-from-source node smoke/smoketest.js npm test +.PHONY: smoke release: @@ -32,3 +32,4 @@ release: @echo "Publishing to NPM" @npm publish +.PHONY: release diff --git a/README.md b/README.md index c538350c..cedc4712 100755 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ detection. This can be used for face detection etc. mat.detectObject(haar_cascade_xml, opts, function(err, matches){}) ``` -For convenience in face recognition, cv.FACE_CASCADE is a cascade that can be used for frontal face recognition. +For convenience in face detection, cv.FACE_CASCADE is a cascade that can be used for frontal face detection. Also: diff --git a/package.json b/package.json index b4c916e7..226053aa 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "url": "https://github.com/peterbraden/node-opencv.git" }, "engines": { - "node": ">=0.10" + "node": ">=0.12" }, "binary": { "module_name": "opencv",