Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed May 19, 2017
1 parent dd922c8 commit 3e8de91
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
@@ -1,6 +1,10 @@
sudo: false
language: node_js
node_js:
- '0.11'
- '7'
- '6'
- '4'
- '0.12'
- '0.10'
script: "make test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
5 changes: 5 additions & 0 deletions History.md
@@ -1,4 +1,9 @@

1.0.2 / 2017-05-19
==================

* [Snyk Update] New fixes for 1 vulnerable dependency path (#10)

1.0.1 / 2014-12-15
==================

Expand Down
15 changes: 6 additions & 9 deletions Makefile
Expand Up @@ -3,17 +3,14 @@ REPORTER = spec
TIMEOUT = 1000
MOCHA_OPTS =

install:
@npm install --registry=https://registry.npm.taobao.org

test: install
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--timeout $(TIMEOUT) \
$(MOCHA_OPTS) \
$(TESTS)

test-cov cov: install
test-cov cov:
@NODE_ENV=test node --harmony \
node_modules/.bin/istanbul cover --preserve-comments \
./node_modules/.bin/_mocha \
Expand All @@ -23,7 +20,7 @@ test-cov cov: install
$(MOCHA_OPTS) \
$(TESTS)

test-travis: install
test-travis:
@NODE_ENV=test node --harmony \
node_modules/.bin/istanbul cover --preserve-comments \
./node_modules/.bin/_mocha \
Expand All @@ -37,11 +34,11 @@ test-travis: install

test-all: test test-cov

contributors: install
contributors:
@./node_modules/.bin/contributors -f plain -o AUTHORS

autod: install
@./node_modules/.bin/autod -w --prefix "~"
autod:
@./node_modules/.bin/autod -w --prefix "^"
@$(MAKE) install

.PHONY: test
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "userauth",
"version": "1.0.1",
"version": "1.0.2",
"description": "user auth abstraction layer middleware.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 3e8de91

Please sign in to comment.