Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Sep 25, 2014
1 parent 1c80473 commit 23bcc11
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 87 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -13,4 +13,5 @@ results
build/

node_modules
npm-debug.log
npm-debug.log
coverage/
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -2,4 +2,5 @@ language: node_js
node_js:
- '0.11'
- '0.10'
script: make test-coveralls
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
8 changes: 8 additions & 0 deletions History.md
@@ -1,4 +1,12 @@

1.0.0 / 2014-09-25
==================

* bump nan to 1.3.0 support node >= 0.11.13 now
* add totoro ci tests
* add missing line to murmur.cc
* is hard to impl uint32 op in js

0.0.4 / 2014-03-22
==================

Expand Down
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

41 changes: 0 additions & 41 deletions Makefile

This file was deleted.

29 changes: 23 additions & 6 deletions README.md
@@ -1,18 +1,35 @@
node-murmurhash
=======

[![Build Status](https://secure.travis-ci.org/fengmk2/node-murmurhash.png)](http://travis-ci.org/fengmk2/node-murmurhash) [![Coverage Status](https://coveralls.io/repos/fengmk2/node-murmurhash/badge.png)](https://coveralls.io/r/fengmk2/node-murmurhash) [![Build Status](https://drone.io/github.com/fengmk2/node-murmurhash/status.png)](https://drone.io/github.com/fengmk2/node-murmurhash/latest)

[![NPM](https://nodei.co/npm/node-murmurhash.png?downloads=true&stars=true)](https://nodei.co/npm/node-murmurhash/)

![logo](https://raw.github.com/fengmk2/node-murmurhash/master/logo.png)
[![NPM version][npm-image]][npm-url]
[![build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![Gittip][gittip-image]][gittip-url]
[![David deps][david-image]][david-url]
[![node version][node-image]][node-url]
[![npm download][download-image]][download-url]

[npm-image]: https://img.shields.io/npm/v/node-murmurhash.svg?style=flat-square
[npm-url]: https://npmjs.org/package/node-murmurhash
[travis-image]: https://img.shields.io/travis/node-modules/node-murmurhash.svg?style=flat-square
[travis-url]: https://travis-ci.org/node-modules/node-murmurhash
[coveralls-image]: https://img.shields.io/coveralls/node-modules/node-murmurhash.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/node-modules/node-murmurhash?branch=master
[gittip-image]: https://img.shields.io/gittip/fengmk2.svg?style=flat-square
[gittip-url]: https://www.gittip.com/fengmk2/
[david-image]: https://img.shields.io/david/node-modules/node-murmurhash.svg?style=flat-square
[david-url]: https://david-dm.org/node-modules/node-murmurhash
[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square
[node-url]: http://nodejs.org/download/
[download-image]: https://img.shields.io/npm/dm/node-murmurhash.svg?style=flat-square
[download-url]: https://npmjs.org/package/node-murmurhash

murmurhash V2, support utf8 Buffer.

## Install

```bash
$ npm install node-murmurhash
$ npm install node-murmurhash --save
```

## Usage
Expand Down
Binary file removed logo.png
Binary file not shown.
34 changes: 17 additions & 17 deletions package.json
@@ -1,15 +1,19 @@
{
"name": "node-murmurhash",
"version": "0.0.4",
"version": "1.0.0",
"description": "murmurhash V2, support utf8 Buffer",
"main": "index.js",
"scripts": {
"test": "mocha test/*.test.js"
"test": "npm install && mocha --check-leaks -R spec test/*.test.js",
"test-cov": "npm install && node node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --check-leaks test/*.test.js",
"test-travis": "npm install && node node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --check-leaks test/*.test.js",
"test-totoro": "totoro --runner test/murmurhash.test.js -b 'linux/node/0.11,linux/node/0.10,windowsXP/node/0.11,windows7/node/0.11,windowsXP/node/0.10,windows7/node/0.10'",
"jshint": "jshint .",
"autod": "autod -w --prefix '~' --dep nan && npm run cnpm",
"cnpm": "npm install --registry=https://registry.npm.taobao.org",
"contributors": "contributors -f plain -o AUTHORS"
},
"config": {
"blanket": {
"pattern": "node-murmurhash/lib"
},
"travis-cov": {
"threshold": 100
}
Expand All @@ -19,25 +23,21 @@
},
"devDependencies": {
"autod": "*",
"benchmark": "*",
"beautify-benchmark": "*",
"blanket": "*",
"coveralls": "*",
"cuint": "^0.1.5",
"beautify-benchmark": "~0.2.4",
"benchmark": "~1.0.0",
"istanbul-harmony": "*",
"jshint": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"should": "^4.0.4",
"travis-cov": "*"
"should": "~4.0.4"
},
"homepage": "https://github.com/fengmk2/node-murmurhash",
"homepage": "https://github.com/node-modules/node-murmurhash",
"repository": {
"type": "git",
"url": "git://github.com/fengmk2/node-murmurhash.git",
"web": "https://github.com/fengmk2/node-murmurhash"
"url": "git://github.com/node-modules/node-murmurhash.git",
"web": "https://github.com/node-modules/node-murmurhash"
},
"bugs": {
"url": "https://github.com/fengmk2/node-murmurhash/issues",
"url": "https://github.com/node-modules/node-murmurhash/issues",
"email": "fengmk2@gmail.com"
},
"keywords": [
Expand Down

0 comments on commit 23bcc11

Please sign in to comment.