Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
Release 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed Jun 9, 2016
1 parent 497824f commit 4e97b97
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 6 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
9.0.1 / 2016-06-09
==================

* Fix browser global export

9.0.0 / 2016-05-30
==================

Expand All @@ -9,7 +14,7 @@
8.4.0 / 2016-05-21
==================

* Add support for Symbols in .eql
* Add support for Symbols in .eql

8.3.2 / 2016-05-18
==================
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ If you want to use _should_ in browser, use the `should.js` file in the root of

```bash
$ npm install
$ gulp script
$ npm run browser
```

The script is exported to `window.should`:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "9.0.0",
"version": "9.0.1",
"author": "TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors",
"repository": {
"type": "git",
Expand Down
12 changes: 7 additions & 5 deletions should.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
/*!
* should - test framework agnostic BDD-style assertions
* @version v9.0.0
* @version v9.0.1
* @author TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors
* @link https://github.com/shouldjs/should.js
* @license MIT
*/

(function () {
(function (root) {
'use strict';

root = 'default' in root ? root['default'] : root;

var types = {
NUMBER: 'number',
UNDEFINED: 'undefined',
Expand Down Expand Up @@ -3813,13 +3815,13 @@
} else if (typeof module === 'object' && module.exports) {
module.exports = should;
} else {
this.Should = should;
root.Should = should;

Object.defineProperty(this, 'should', {
Object.defineProperty(root, 'should', {
enumerable: false,
configurable: true,
value: should
});
}

}());
}(this));

0 comments on commit 4e97b97

Please sign in to comment.