Skip to content

Commit

Permalink
Fix lint, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
scommisso committed Apr 10, 2014
1 parent 8578ce7 commit 70cecb6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -318,7 +318,7 @@ var db = require("priam")({

Release Notes
-------------
- `0.6.5`: Added fluent syntax. Updated example to include setup script.
- `0.6.6`: Added fluent syntax. Updated example to include setup script.
- `0.6.4`: Added `#param()` helper method for hinted parameters.
- `0.6.3`: Dependency updates, test Travis CI hooks.
- `0.6.2`: Initial Public Release
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "priam",
"version": "0.6.5",
"version": "0.6.6",
"description": "A simple Cassandra driver. It wraps the helenus and node-cassandra-cql drivers with additional error/retry handling, external .cql file support, and connection option resolution from an external source, among other improvements.",
"keywords": [
"cassandra",
Expand Down Expand Up @@ -36,7 +36,7 @@
"mocha-lcov-reporter": "~0.0.1"
},
"scripts": {
"pretest": "node node_modules/jshint/bin/jshint ./lib/.",
"pretest": "node node_modules/jshint/bin/jshint ./lib/. ./test/. ./index.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha"
}
}
2 changes: 1 addition & 1 deletion test/unit/util/query.tests.js
Expand Up @@ -130,7 +130,7 @@ describe("lib/util/query.js", function () {

// assert
assert.strictEqual(query.context.errors.length, 1, "errors is populated");
assert.equal(query.context.errors[0], qcError, "queryCache error is in errors list")
assert.equal(query.context.errors[0], qcError, "queryCache error is in errors list");
done();
});

Expand Down

0 comments on commit 70cecb6

Please sign in to comment.