Skip to content

Commit 177b4ba

Browse files
committed
Release v0.0.5
1 parent 5e79164 commit 177b4ba

File tree

7 files changed

+26
-14
lines changed

7 files changed

+26
-14
lines changed

.github/workflows/benchmark.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v2
32-
- uses: actions/setup-node@v1
32+
- uses: actions/setup-node@v2
3333
with:
34-
node-version: 15
34+
node-version: 16
35+
timeout-minutes: 5
3536
- name: Install production and development dependencies
3637
run: |
3738
npm install || npm install || npm install
39+
timeout-minutes: 15
3840
- name: Run benchmarks
3941
run: |
4042
npm run benchmark

.github/workflows/examples.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v2
32-
- uses: actions/setup-node@v1
32+
- uses: actions/setup-node@v2
3333
with:
34-
node-version: 15
34+
node-version: 16
35+
timeout-minutes: 5
3536
- name: Install production and development dependencies
3637
run: |
3738
npm install || npm install || npm install
39+
timeout-minutes: 15
3840
- name: Run examples
3941
run: |
4042
npm run examples

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
3333
steps:
3434
- uses: actions/checkout@v2
35-
- uses: actions/setup-node@v1
35+
- uses: actions/setup-node@v2
3636
with:
37-
node-version: 15
37+
node-version: 16
38+
timeout-minutes: 5
3839
- name: Replace all GitHub links to individual packages with npm links
3940
run: |
4041
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ jobs:
3535
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
3636
steps:
3737
- uses: actions/checkout@v2
38-
- uses: actions/setup-node@v1
38+
- uses: actions/setup-node@v2
3939
with:
40-
node-version: 15
40+
node-version: 16
41+
timeout-minutes: 5
4142
- name: Install production and development dependencies
4243
id: install
4344
run: |
4445
npm install || npm install || npm install
46+
timeout-minutes: 15
4547
- name: Run tests
4648
id: tests
4749
run: |

.github/workflows/test_coverage.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,18 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: actions/checkout@v2
35-
- uses: actions/setup-node@v1
35+
- uses: actions/setup-node@v2
3636
with:
37-
node-version: 15
37+
node-version: 16
38+
timeout-minutes: 5
3839
- name: Install production and development dependencies
3940
run: |
4041
npm install || npm install || npm install
42+
timeout-minutes: 15
4143
- name: Calculate test coverage
4244
run: |
4345
npm run test-cov || npm run test-cov || npm run test-cov
46+
timeout-minutes: 15
4447
- name: Upload coverage to Codecov
4548
id: upload
4649
uses: codecov/codecov-action@v1

.github/workflows/test_install.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ jobs:
3636
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
3737
if: ${{ github.event.workflow_run.conclusion == 'success' }}
3838
steps:
39-
- uses: actions/checkout@v1
40-
- uses: actions/setup-node@v1
39+
- uses: actions/checkout@v2
40+
- uses: actions/setup-node@v2
4141
with:
42-
node-version: 15
42+
node-version: 16
43+
timeout-minutes: 5
4344
- name: Install production dependencies via npm
4445
run: |
4546
npm install --only=prod || npm install --only=prod || npm install --only=prod
47+
timeout-minutes: 15
4648
- uses: act10ns/slack@v1
4749
with:
4850
status: ${{ job.status }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/simulate-iter-bartlett-hann-pulse",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Create an iterator which generates a Bartlett-Hann pulse waveform.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)