Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
logicalparadox committed Feb 25, 2012
1 parent d9215b8 commit 5676562
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
33 changes: 33 additions & 0 deletions History.md
@@ -1,4 +1,37 @@

0.4.0 / 2012-02-25
==================

* docs and readme for upcoming 0.4.0
* docs generated
* putting coverage and tests for docs in docs/out/support
* make docs
* makefile copy necessary resources for tests in docs
* rename configuration test
* Merge pull request #21 from logicalparadox/close-to
* Update the browser version.
* Update `closeTo()` docs.
* Add `Assertion.closeTo()` method.
* Add `.closeTo()` should test.
* Add `.closeTo()` expect test.
* Merge pull request #20 from logicalparadox/satisfy
* Update the browser version.
* `..` -> `()` in `.satisfy()` should test.
* Update example for `.satisfy()`.
* Update the compiled browser version.
* Add `Assertion.satisfy()` method.
* Add `.satisfy()` should test.
* Add `.satisfy()` expect test.
* Merge pull request #19 from logicalparadox/respond-to
* Update the compiled browser version.
* Add `respondTo` Assertion.
* Add `respondTo` should test.
* Add `respondTo` expect test.
* Merge branch 'feature/coverage'
* mocha coverage support
* doc contributors
* README contributors

0.3.4 / 2012-02-23
==================

Expand Down
2 changes: 1 addition & 1 deletion chai.js
Expand Up @@ -1006,7 +1006,7 @@ require.register("chai.js", function(module, exports, require){
var used = [];
var exports = module.exports = {};

exports.version = '0.3.4';
exports.version = '0.4.0';

exports.Assertion = require('./assertion');
exports.AssertionError = require('./error');
Expand Down
2 changes: 1 addition & 1 deletion docs/out/chai.js
Expand Up @@ -1006,7 +1006,7 @@ require.register("chai.js", function(module, exports, require){
var used = [];
var exports = module.exports = {};

exports.version = '0.3.4';
exports.version = '0.4.0';

exports.Assertion = require('./assertion');
exports.AssertionError = require('./error');
Expand Down
2 changes: 1 addition & 1 deletion docs/out/support/coverage/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/chai.js
Expand Up @@ -7,7 +7,7 @@
var used = [];
var exports = module.exports = {};

exports.version = '0.3.4';
exports.version = '0.4.0';

exports.Assertion = require('./assertion');
exports.AssertionError = require('./error');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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.3.4",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/chai"
Expand Down

0 comments on commit 5676562

Please sign in to comment.