diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..7187f38 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +# Ordered by date of first contribution. +# Auto-generated by 'contributors' on Fri, 27 Dec 2013 10:43:58 GMT. +# https://github.com/xingrz/node-contributors + +fengmk2 (https://github.com/fengmk2) +dead_horse (https://github.com/dead-horse) +AlsoTang (https://github.com/alsotang) diff --git a/History.md b/History.md index 762730c..ef704a9 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,10 @@ +0.1.8 / 2013-12-27 +================== + + * fix Node 0.11 broken. (@alsotang) + * fix test cases + 0.1.7 / 2013-11-20 ================== diff --git a/Makefile b/Makefile index df8c0b7..0afe6a1 100644 --- a/Makefile +++ b/Makefile @@ -26,4 +26,7 @@ test-coveralls: test-all: test test-cov -.PHONY: install test test-cov test-all test-coveralls +contributors: install + @./node_modules/contributors/bin/contributors -f plain -o AUTHORS + +.PHONY: test diff --git a/README.md b/README.md index 16c806b..ac151c2 100644 --- a/README.md +++ b/README.md @@ -137,13 +137,15 @@ mm(fs, 'readFile', function (path, callback) { $ git summary project : mm - repo age : 1 year, 1 month - active : 21 days - commits : 49 - files : 15 + repo age : 1 year, 2 months + active : 23 days + commits : 55 + files : 16 authors : - 45 fengmk2 91.8% - 4 dead-horse 8.2% + 49 fengmk2 89.1% + 4 dead-horse 7.3% + 1 AlsoTang 1.8% + 1 Alsotang 1.8% ``` ## License diff --git a/package.json b/package.json index 812a0ce..6258b97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mm", - "version": "0.1.7", + "version": "0.1.8", "description": "mock mate, mock http request, fs access and so on.", "main": "index.js", "scripts": { @@ -20,6 +20,7 @@ "semver": "~2.2.1" }, "devDependencies": { + "contributors": "*", "should": "*", "travis-cov": "*", "node-patch": "*",