mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 1.1.0
This commit is contained in:
parent
a6e22390c8
commit
456ee6ad83
5 changed files with 37 additions and 11 deletions
25
History.md
25
History.md
|
@ -1,4 +1,29 @@
|
|||
|
||||
1.1.0 / 2012-06-26
|
||||
==================
|
||||
|
||||
* browser build
|
||||
* Disable "Assertion.includeStack is false" test in IE.
|
||||
* Use `utils.getName` for all function inspections.
|
||||
* Merge pull request #80 from kilianc/closeTo
|
||||
* fixes #79
|
||||
* browser build
|
||||
* expand docs to indicate change of subject for chaining. Closes #78
|
||||
* add `that` chain noop
|
||||
* Merge branch 'bug/74'
|
||||
* comments on how to property use `length` as chain. Closes #74
|
||||
* tests for length as chainable property. #74
|
||||
* add support for `length` as chainable prop/method.
|
||||
* Merge branch 'bug/77'
|
||||
* tests for getPathValue when working with nested arrays. Closes #77
|
||||
* add getPathValue support for nested arrays
|
||||
* browser build
|
||||
* fix bug for missing browser utils
|
||||
* compile tool aware of new folder layout
|
||||
* Merge branch 'refactor/1dot1'
|
||||
* move core assertions to own file and refactor all using utils
|
||||
* rearrange folder structure
|
||||
|
||||
1.0.4 / 2012-06-03
|
||||
==================
|
||||
|
||||
|
|
17
README.md
17
README.md
|
@ -9,22 +9,23 @@ For more information or to download plugins, view the [documentation](http://cha
|
|||
|
||||
### Contributors
|
||||
|
||||
commits: 471
|
||||
files : 44
|
||||
commits: 493
|
||||
files : 45
|
||||
authors:
|
||||
344 Jake Luer 73.0%
|
||||
66 Veselin Todorov 14.0%
|
||||
34 Domenic Denicola 7.2%
|
||||
5 Jo Liss 1.1%
|
||||
5 Juliusz Gonera 1.1%
|
||||
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%
|
||||
3 Jeff Barczewski 0.6%
|
||||
2 Jakub Nešetřil 0.4%
|
||||
1 Anand Patil 0.2%
|
||||
1 Sasha Koss 0.2%
|
||||
1 Benjamin Horsleben 0.2%
|
||||
1 Vinay Pulim 0.2%
|
||||
1 Sasha Koss 0.2%
|
||||
1 Kilian Ciuffolo 0.2%
|
||||
|
||||
## License
|
||||
|
||||
|
|
2
chai.js
2
chai.js
|
@ -64,7 +64,7 @@ var used = []
|
|||
* Chai version
|
||||
*/
|
||||
|
||||
exports.version = '1.0.4';
|
||||
exports.version = '1.1.0';
|
||||
|
||||
/*!
|
||||
* Primary `Assertion` prototype
|
||||
|
|
|
@ -11,7 +11,7 @@ var used = []
|
|||
* Chai version
|
||||
*/
|
||||
|
||||
exports.version = '1.0.4';
|
||||
exports.version = '1.1.0';
|
||||
|
||||
/*!
|
||||
* Primary `Assertion` prototype
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"Veselin Todorov <hi@vesln.com>",
|
||||
"John Firebaugh <john.firebaugh@gmail.com>"
|
||||
],
|
||||
"version": "1.0.4",
|
||||
"version": "1.1.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/chaijs/chai"
|
||||
|
|
Loading…
Reference in a new issue