Skip to content

Commit

Permalink
v11.10.1 - republish
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Dec 21, 2023
1 parent 62cc66c commit bf1db0a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v11.10.1 2023 December 21

- Republish as npm seems to have lost the previous version

## v11.10.0 2023 December 21

- Rewrote `errorEqual` to better support empty checks, code checks, and contain checks
Expand All @@ -15,10 +19,10 @@

## v11.7.0 2023 November 29

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
- Added `notContains`
- `contains` and `notContains` now output the failed comparison, rather than just the failure
- No need to not use `String.prototype.includes` as it is supported by all environments we support
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)

## v11.6.0 2023 November 24

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,30 +51,30 @@ Common utilities and helpers to make testing assertions easier
<a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js"><h3>Deno</h3></a>

``` typescript
import * as pkg from 'https://unpkg.com/assert-helpers@^11.10.0/edition-deno/index.ts'
import * as pkg from 'https://unpkg.com/assert-helpers@^11.10.1/edition-deno/index.ts'
```

<a href="https://www.skypack.dev" title="Skypack is a JavaScript Delivery Network for modern web apps"><h3>Skypack</h3></a>

``` html
<script type="module">
import * as pkg from '//cdn.skypack.dev/assert-helpers@^11.10.0'
import * as pkg from '//cdn.skypack.dev/assert-helpers@^11.10.1'
</script>
```

<a href="https://unpkg.com" title="unpkg is a fast, global content delivery network for everything on npm"><h3>unpkg</h3></a>

``` html
<script type="module">
import * as pkg from '//unpkg.com/assert-helpers@^11.10.0'
import * as pkg from '//unpkg.com/assert-helpers@^11.10.1'
</script>
```

<a href="https://jspm.io" title="Native ES Modules CDN"><h3>jspm</h3></a>

``` html
<script type="module">
import * as pkg from '//dev.jspm.io/[email protected].0'
import * as pkg from '//dev.jspm.io/[email protected].1'
</script>
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "Assert Helpers",
"name": "assert-helpers",
"version": "11.10.0",
"version": "11.10.1",
"license": "Artistic-2.0",
"description": "Common utilities and helpers to make testing assertions easier",
"homepage": "https://github.com/bevry/assert-helpers",
Expand Down

0 comments on commit bf1db0a

Please sign in to comment.