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

Commit 32ddfb9

Browse files
committed
Release 8.4.0
1 parent 097fdca commit 32ddfb9

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Diff for: History.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
8.4.0 / 2016-05-21
2+
==================
3+
4+
* Add support for Symbols in .eql
5+
16
8.3.2 / 2016-05-18
27
==================
38

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "should",
33
"description": "test framework agnostic BDD-style assertions",
4-
"version": "8.3.2",
4+
"version": "8.4.0",
55
"author": "TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors",
66
"repository": {
77
"type": "git",

Diff for: should.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
/*!
33
* should - test framework agnostic BDD-style assertions
4-
* @version v8.3.2
4+
* @version v8.4.0
55
* @author TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors
66
* @link https://github.com/shouldjs/should.js
77
* @license MIT
@@ -3037,6 +3037,7 @@ function eqInternal(a, b, opts, stackA, stackB, path, fails) {
30373037
return (a !== a) ? result(b !== b, REASON.NAN_NUMBER)
30383038
: result(a === b, REASON.EQUALITY);
30393039

3040+
case 'symbol':
30403041
case 'boolean':
30413042
case 'string':
30423043
return result(a === b, REASON.EQUALITY);

Diff for: should.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)