Skip to content

Commit

Permalink
v4.6.0 - boundation, changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 23, 2023
1 parent e493205 commit 9a6100e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 34 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v4.6.0 2023 November 23

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)

## v4.5.1 2023 November 23

- Fix incompatibility with editions, due to v4.5.0 and v4.4.0 requiring editions to operate
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,30 +87,30 @@ Doesn't do special handling for `-releaseTag` and `0.x` versions.
<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/version-range@^4.5.1/edition-deno/index.ts'
import pkg from 'https://unpkg.com/version-range@^4.6.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/version-range@^4.5.1'
import pkg from '//cdn.skypack.dev/version-range@^4.6.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/version-range@^4.5.1'
import pkg from '//unpkg.com/version-range@^4.6.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/version-range@4.5.1'
import pkg from '//dev.jspm.io/version-range@4.6.0'
</script>
```

Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "version-range",
"version": "4.5.1",
"version": "4.6.0",
"description": "Check version ranges like `>=N` and `X || Y || Z` with support for Node.js, Web Browsers, Deno, and TypeScript.",
"homepage": "https://github.com/bevry/version-range",
"license": "Artistic-2.0",
Expand Down Expand Up @@ -122,7 +122,7 @@
"require"
],
"engines": {
"node": true,
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
Expand All @@ -137,7 +137,7 @@
"import"
],
"engines": {
"node": true,
"node": "12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
Expand Down Expand Up @@ -205,24 +205,6 @@
"valid-directory": "^4.5.0",
"valid-module": "^2.5.0"
},
"eslintConfig": {
"extends": [
"bevry"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"boundation": {
"comment": "editions depends upon version-range, as such version-range must support Node.js v4, target ES5, and not use editions",
"browser": true,
"compiler": "typescript",
"targets": [
"ES5"
]
},
"scripts": {
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:edition-types",
Expand Down Expand Up @@ -252,5 +234,23 @@
"our:verify:module": "valid-module",
"our:verify:prettier": "prettier --write .",
"test": "node ./edition-es5/test.js"
},
"eslintConfig": {
"extends": [
"bevry"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"boundation": {
"comment": "editions depends upon version-range, as such version-range must support Node.js v4, target ES5, and not use editions",
"browser": true,
"compiler": "typescript",
"targets": [
"ES5"
]
}
}

0 comments on commit 9a6100e

Please sign in to comment.