Release 0.1.5

This commit is contained in:
Jake Luer 2012-01-02 00:51:51 -05:00
parent 1d2a4fa70b
commit b93353afb3
4 changed files with 13 additions and 3 deletions

View file

@ -1,4 +1,14 @@
0.1.5 / 2012-01-02
==================
* browser tests pass
* type in should.not.equal
* test for should (not) exist
* added should.exist and should.not.exist
* browser uses tdd
* convert tests to tdd
0.1.4 / 2011-12-26
==================

View file

@ -944,7 +944,7 @@ require.register("chai.js", function(module, exports, require){
var exports = module.exports = {};
exports.version = '0.1.4';
exports.version = '0.1.5';
exports.expect = require('./interface/expect');
exports.assert = require('./interface/assert');

View file

@ -6,7 +6,7 @@
var exports = module.exports = {};
exports.version = '0.1.4';
exports.version = '0.1.5';
exports.expect = require('./interface/expect');
exports.assert = require('./interface/assert');

View file

@ -3,7 +3,7 @@
"name": "chai",
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
"keywords": [ "test", "assertion", "assert", "testing" ],
"version": "0.1.4",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/chai"