diff --git a/README.md b/README.md index 778f03c..ced1269 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ chai.expect( { a: 'foo', b: 'bar', c: 'baz' } ).to.not.deep.match( { a: 'fuzz', ### Note about `URL` objects -This module also supports [WHATWG `URL` objects](https://nodejs.org/docs/latest/api/url.html#url_the_whatwg_url_api), as introduced in Node `7.x` (and backported into Node `6.x`, it seems). However, it is important to note that the behavior by which is compares two `URL` objects will only consider them deeply matched if they are a full 100% match rather than a "subset" match. Hopefully this behavior is acceptable to those making use of it! :pray: +This module also supports [WHATWG `URL` objects](https://nodejs.org/docs/latest/api/url.html#url_the_whatwg_url_api), as introduced in Node `7.x` (and backported into Node `6.x`, it seems). However, it is important to note that the behavior by which it compares two `URL` objects will only consider them deeply matched if they are a full 100% match rather than a "subset" match. Hopefully this behavior is acceptable to those making use of it! :pray: ## License diff --git a/package.json b/package.json index 98395f0..97a272c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chai-deep-match", - "version": "1.2.0", + "version": "1.2.1", "description": "Extends Chai with an assertion for deeply matching objects (i.e. subset equality checking)", "author": { "name": "James M. Greene",