From 80ff45bdd5a636232e1e01d69c8731e2f4fcba1b Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Fri, 10 Oct 2014 09:18:08 +0800 Subject: [PATCH] Release 1.0.0 --- AUTHORS | 5 +++++ History.md | 7 +++++++ LICENSE.txt | 21 --------------------- README.md | 2 +- package.json | 3 ++- 5 files changed, 15 insertions(+), 23 deletions(-) delete mode 100644 LICENSE.txt diff --git a/AUTHORS b/AUTHORS index 261e5b5..bd49c2f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,2 +1,7 @@ +# Ordered by date of first contribution. +# Auto-generated by 'contributors' on Fri, 10 Oct 2014 01:15:55 GMT. +# https://github.com/xingrz/node-contributors + fengmk2 (https://github.com/fengmk2) falsecz (https://github.com/falsecz) +aleafs (https://github.com/aleafs) diff --git a/History.md b/History.md index 7621533..91ba437 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,11 @@ +1.0.0 / 2014-10-10 +================== + + * return zk client (@aleafs) + * use istanbul for coverage + * Fixed travis test + 0.2.3 / 2014-10-02 ================== diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index e1cc47f..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -This software is licensed under the MIT License. - -Copyright (C) 2013 fengmk2 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/README.md b/README.md index 3a986a1..36874c9 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ zk.once('connected', function (err) { (The MIT License) -Copyright (c) 2013 fengmk2 <fengmk2@gmail.com> +Copyright (c) 2013 - 2014 fengmk2 <fengmk2@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/package.json b/package.json index eaba06f..f1bb937 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zookeeper-watcher", - "version": "0.2.3", + "version": "1.0.0", "description": "Extend node-zookeeper-client, let zookeeper client support `watch(path)` method.", "main": "index.js", "scripts": { @@ -17,6 +17,7 @@ "node-zookeeper-client": "~0.2.1" }, "devDependencies": { + "contributors": "*", "interceptor": "~0.1.4", "istanbul": "*", "mocha": "*",