Skip to content

Commit

Permalink
drop support for node 0.8
Browse files Browse the repository at this point in the history
it doesn’t support crypto.getCiphers() and crypto.getHashes(). adding
support is just a matter if making the relevant tests optional.
  • Loading branch information
jonathanong committed May 17, 2014
1 parent 427f188 commit 71df3df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: node_js
node_js:
- 0.6
- 0.8
- "0.10"
- "0.11"
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
},
"devDependencies": {
"mocha": "1"
},
"engines": {
"node": ">= 0.10"
}
}

2 comments on commit 71df3df

@dougwilson
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

adding support is just a matter if making the relevant tests optional.

so you're saying just the tests are using those two methods? i can easily make them optional, or something, then, if i even care :D

@jonathanong
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah just got lazy.

Please sign in to comment.