Skip to content

Commit

Permalink
v4.31.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 7fffab3 commit 034d848
Show file tree
Hide file tree
Showing 7 changed files with 586 additions and 95 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

## v4.31.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)

## v4.30.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 @@ -181,23 +181,23 @@ If you want to render badges inside your own project's readme files, check out t

``` html
<script type="module">
import * as pkg from '//cdn.skypack.dev/badges@^4.30.0'
import * as pkg from '//cdn.skypack.dev/badges@^4.31.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/badges@^4.30.0'
import * as pkg from '//unpkg.com/badges@^4.31.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/badges@4.30.0'
import * as pkg from '//dev.jspm.io/badges@4.31.0'
</script>
```

Expand Down
Loading

0 comments on commit 034d848

Please sign in to comment.