Skip to content

Commit

Permalink
v10.1.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 bc95a99 commit 68aebb9
Show file tree
Hide file tree
Showing 9 changed files with 66 additions and 34 deletions.
5 changes: 3 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ updates:
directory: /
schedule:
interval: weekly
day: monday
day: sunday
time: '00:00'
timezone: Australia/Perth
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
day: monday
day: sunday
time: '00:00'
timezone: Australia/Perth
open-pull-requests-limit: 0
15 changes: 12 additions & 3 deletions .github/workflows/bevry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- '16'
- '18'
- '20'
- '21'
runs-on: ${{ matrix.os }}
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }}
steps:
- uses: actions/checkout@v4
- name: Install desired Node.js version
Expand Down Expand Up @@ -67,3 +64,15 @@ jobs:
with:
surgeLogin: ${{ secrets.SURGE_LOGIN }}
surgeToken: ${{ secrets.SURGE_TOKEN }}
automerge:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
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
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v10.1.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)

## v10.0.0 2023 November 12

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,23 @@ Common utilities and helpers to make testing assertions easier

``` html
<script type="module">
import * as pkg from '//cdn.skypack.dev/assert-helpers@^10.0.0'
import * as pkg from '//cdn.skypack.dev/assert-helpers@^10.1.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 * as pkg from '//unpkg.com/assert-helpers@^10.0.0'
import * as pkg from '//unpkg.com/assert-helpers@^10.1.0'
</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/assert-helpers@10.0.0'
import * as pkg from '//dev.jspm.io/assert-helpers@10.1.0'
</script>
```

Expand Down
6 changes: 1 addition & 5 deletions index.cjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
'use strict'
// auto-generated by boundation, do not update manually
/** @type {typeof import("./compiled-types/index.d.ts") } */
module.exports = require('editions').requirePackage(
__dirname,
require,
'index.js',
)
module.exports = require('editions').requirePackage(__dirname, require, 'index.js')
48 changes: 36 additions & 12 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "Assert Helpers",
"name": "assert-helpers",
"version": "10.0.0",
"version": "10.1.0",
"description": "Common utilities and helpers to make testing assertions easier",
"homepage": "https://github.com/bevry/assert-helpers",
"license": "Artistic-2.0",
Expand Down Expand Up @@ -179,9 +179,9 @@
"browser": "edition-browsers/index.js",
"module": "edition-browsers/index.js",
"dependencies": {
"@bevry/ansi": "^4.0.0",
"@bevry/ansi": "^4.1.0",
"editions": "^6.8.0",
"errlop": "^4.6.0"
"errlop": "^5.0.0"
},
"devDependencies": {
"@bevry/update-contributors": "^1.23.0",
Expand Down
6 changes: 1 addition & 5 deletions test.cjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
'use strict'
// auto-generated by boundation, do not update manually
/** @type {typeof import("./compiled-types/test.d.ts") } */
module.exports = require('editions').requirePackage(
__dirname,
require,
'test.js',
)
module.exports = require('editions').requirePackage(__dirname, require, 'test.js')

0 comments on commit 68aebb9

Please sign in to comment.