Skip to content

Commit

Permalink
Merge pull request #7 from hkelly93/enhancement/1/Complete-Test-Suite
Browse files Browse the repository at this point in the history
Finished the test suite and updated some packages.
  • Loading branch information
hkelly93 committed May 21, 2016
2 parents 4263266 + a74aa7a commit 05cfaf2
Show file tree
Hide file tree
Showing 7 changed files with 402 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -23,7 +23,10 @@
* Updated algorithm for determining if the tooltip should be relocated.
* Added sorting to the thresholds if it is made up of numbers.

# 1.3.1 (5/19/2016-)
# 1.4.1 (5/19/2016 - 5/21/2016)
* Added additional tests and fixed the bugs that came with that.
* Updated d3 to 3.5.17
* Fixed a bug that made the sorting different each time.
* Finished the test suite.

# 1.5.0 (5/21/16-)
4 changes: 4 additions & 0 deletions Gruntfile.js
Expand Up @@ -43,6 +43,10 @@ module.exports = function(grunt) {
mocha: {
test: {
src: ['test/**/*.html']
},
options: {
log: true,
logErrors: true
}
}
});
Expand Down
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -20,6 +20,11 @@ You can also use [npm](http://npmjs.org)
```
$ npm install d3-relationshipgraph
```
Or by downloading the repository and running
```
$ npm install
```
in the directory.

## Usage
### Setup
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Expand Up @@ -10,12 +10,12 @@
"grunt": "~0.4.5",
"grunt-contrib-csslint": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-jshint": "~0.12.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-jscs": "^2.8.0",
"grunt-mocha": "^1.0.2"
}
"version": "1.3.0",
"version": "1.4.1",
"keywords": [
"d3",
"relationship",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/hkelly93/d3-relationshipgraph"
},
"main": "d3.relationshipgraph.min.js",
"version": "1.3.0",
"version": "1.4.1",
"files": [
"src",
"d3.relationshipgraph.min.js"
Expand All @@ -37,7 +37,7 @@
"grunt": "~0.4.5",
"grunt-contrib-csslint": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-jshint": "~0.12.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-jscs": "^2.8.0",
"grunt-mocha": "^1.0.2"
Expand Down

0 comments on commit 05cfaf2

Please sign in to comment.