Skip to content

Commit

Permalink
v6.0.0 - boundation, changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 12, 2023
1 parent 0a673cb commit 2768d8e
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 43 deletions.
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 2023 March 24
# 2023 November 13
# https://github.com/bevry/base

# VCS Files
Expand Down Expand Up @@ -31,6 +31,8 @@ bower_components/
node_modules/

# Build Outputs
**/*.cjs
**/*.mjs
**/out.*
**/*.out.*
**/out/
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## v6.0.0 2023 November 13

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
- Minimum required Node.js version changed from `node: >=8` to `node: >=6` adapting to ecosystem changes

## v5.0.0 2023 November 13

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,30 +105,30 @@ Error: CError
<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 pkg from 'https://unpkg.com/errlop@^5.0.0/edition-deno/index.ts'
import pkg from 'https://unpkg.com/errlop@^6.0.0/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 pkg from '//cdn.skypack.dev/errlop@^5.0.0'
import pkg from '//cdn.skypack.dev/errlop@^6.0.0'
</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 pkg from '//unpkg.com/errlop@^5.0.0'
import pkg from '//unpkg.com/errlop@^6.0.0'
</script>
```

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

``` html
<script type="module">
import pkg from '//dev.jspm.io/errlop@5.0.0'
import pkg from '//dev.jspm.io/errlop@6.0.0'
</script>
```

Expand Down
91 changes: 57 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "errlop",
"version": "5.0.0",
"version": "6.0.0",
"description": "An extended Error class that envelops a parent error, such that the stack trace contains the causation",
"homepage": "https://github.com/bevry/errlop",
"license": "Artistic-2.0",
Expand Down Expand Up @@ -76,7 +76,7 @@
"url": "https://github.com/bevry/errlop.git"
},
"engines": {
"node": ">=8"
"node": ">=6"
},
"editions": [
{
Expand Down Expand Up @@ -115,7 +115,7 @@
"require"
],
"engines": {
"node": "8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
Expand Down Expand Up @@ -169,7 +169,7 @@
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"assert-helpers": "^10.0.0",
"assert-helpers": "^10.1.0",
"eslint": "^8.53.0",
"eslint-config-bevry": "^3.29.0",
"eslint-config-prettier": "^9.0.0",
Expand Down

0 comments on commit 2768d8e

Please sign in to comment.