mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 1.3.0
This commit is contained in:
parent
f41bf37773
commit
8788025362
4 changed files with 61 additions and 16 deletions
39
History.md
39
History.md
|
@ -1,4 +1,43 @@
|
|||
|
||||
1.3.0 / 2012-10-01
|
||||
==================
|
||||
|
||||
* browser build w/ folio >= 0.3.4. Closes #99
|
||||
* add back buffer test for deep equal
|
||||
* do not write flags to assertion.prototype
|
||||
* remove buffer test from expect
|
||||
* browser build
|
||||
* improve documentation of custom error messages
|
||||
* Merge branch 'master' of git://github.com/Liffft/chai into Liffft-master
|
||||
* browser build
|
||||
* improved buffer deep equal checking
|
||||
* mocha is npm test command
|
||||
* Cleaning up the js style…
|
||||
* expect tests now include message pass-through
|
||||
* packaging up browser-side changes…
|
||||
* Increasing Throws error message verbosity
|
||||
* Should syntax: piping message through
|
||||
* Make globalShould test work in browser too.
|
||||
* Add a setter for `Object.prototype.should`. Closes #86.
|
||||
* Release 1.2.0
|
||||
* add node 0.8 to travis
|
||||
* Merge branch 'feature/errmsg'
|
||||
* browser build
|
||||
* comment updates for utilities
|
||||
* tweak objDislay to only kick in if object inspection is too long
|
||||
* Merge branch 'master' into feature/errmsg
|
||||
* add display sample for error message refactor
|
||||
* first draft of error message refactor. #93
|
||||
* add `closeTo` assertion to `assert` interface. Closes #89.
|
||||
* update folio build for better require.js handling. Closes #85
|
||||
* Merge pull request #92 from paulmillr/topics/add-dom-checks
|
||||
* Add check for DOM objects.
|
||||
* browser build
|
||||
* Merge branch 'master' of github.com:chaijs/chai
|
||||
* bug - getActual not defaulting to assertion subject
|
||||
* Merge pull request #88 from pwnall/master
|
||||
* Don't inspect() assertion arguments if the assertion passes.
|
||||
|
||||
1.2.0 / 2012-08-07
|
||||
==================
|
||||
|
||||
|
|
34
README.md
34
README.md
|
@ -9,23 +9,29 @@ For more information or to download plugins, view the [documentation](http://cha
|
|||
|
||||
### Contributors
|
||||
|
||||
commits: 493
|
||||
files : 45
|
||||
authors:
|
||||
363 Jake Luer 73.6%
|
||||
66 Veselin Todorov 13.4%
|
||||
36 Domenic Denicola 7.3%
|
||||
5 Jo Liss 1.0%
|
||||
5 Juliusz Gonera 1.0%
|
||||
4 josher19 0.8%
|
||||
4 John Firebaugh 0.8%
|
||||
repo age : 10 months ago
|
||||
commits : 540
|
||||
active : 96 days
|
||||
files : 46
|
||||
authors :
|
||||
399 Jake Luer 73.9%
|
||||
66 Veselin Todorov 12.2%
|
||||
38 Domenic Denicola 7.0%
|
||||
5 Jo Liss 0.9%
|
||||
5 Scott Nonnenberg 0.9%
|
||||
5 Juliusz Gonera 0.9%
|
||||
4 josher19 0.7%
|
||||
4 John Firebaugh 0.7%
|
||||
3 Jeff Barczewski 0.6%
|
||||
2 Teddy Cross 0.4%
|
||||
2 Jakub Nešetřil 0.4%
|
||||
1 Anand Patil 0.2%
|
||||
1 Benjamin Horsleben 0.2%
|
||||
1 Vinay Pulim 0.2%
|
||||
1 Sasha Koss 0.2%
|
||||
1 Kilian Ciuffolo 0.2%
|
||||
1 Benjamin Horsleben 0.2%
|
||||
1 Anand Patil 0.2%
|
||||
1 Paul Miller 0.2%
|
||||
1 Sasha Koss 0.2%
|
||||
1 Victor Costan 0.2%
|
||||
1 Vinay Pulim 0.2%
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ var used = []
|
|||
* Chai version
|
||||
*/
|
||||
|
||||
exports.version = '1.2.0';
|
||||
exports.version = '1.3.0';
|
||||
|
||||
/*!
|
||||
* Primary `Assertion` prototype
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"Veselin Todorov <hi@vesln.com>",
|
||||
"John Firebaugh <john.firebaugh@gmail.com>"
|
||||
],
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/chaijs/chai"
|
||||
|
|
Loading…
Reference in a new issue