From 382e3da12ca30cd5a773e0cbe86e5d6cba6b648e Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 22 Aug 2021 16:28:04 +0000 Subject: [PATCH] Release v0.0.5 --- .github/workflows/benchmark.yml | 6 ++++-- .github/workflows/examples.yml | 6 ++++-- .github/workflows/publish.yml | 5 +++-- .github/workflows/test.yml | 6 ++++-- .github/workflows/test_coverage.yml | 7 +++++-- .github/workflows/test_install.yml | 8 +++++--- README.md | 2 +- package.json | 2 +- 8 files changed, 27 insertions(+), 15 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 121f657..fccb4c2 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -29,12 +29,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Install production and development dependencies run: | npm install || npm install || npm install + timeout-minutes: 15 - name: Run benchmarks run: | npm run benchmark diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 881e209..be2d812 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -29,12 +29,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Install production and development dependencies run: | npm install || npm install || npm install + timeout-minutes: 15 - name: Run examples run: | npm run examples diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 01c768c..bcf6ed8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,9 +32,10 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Replace all GitHub links to individual packages with npm links run: | 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' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9eb321..3d3cfc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,13 +35,15 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Install production and development dependencies id: install run: | npm install || npm install || npm install + timeout-minutes: 15 - name: Run tests id: tests run: | diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index dfcf102..ae56523 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -32,15 +32,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Install production and development dependencies run: | npm install || npm install || npm install + timeout-minutes: 15 - name: Calculate test coverage run: | npm run test-cov || npm run test-cov || npm run test-cov + timeout-minutes: 15 - name: Upload coverage to Codecov id: upload uses: codecov/codecov-action@v1 diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index ed16345..0bb1900 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -36,13 +36,15 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 + timeout-minutes: 5 - name: Install production dependencies via npm run: | npm install --only=prod || npm install --only=prod || npm install --only=prod + timeout-minutes: 15 - uses: act10ns/slack@v1 with: status: ${{ job.status }} diff --git a/README.md b/README.md index 58ef399..e587331 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The half-value [coversed sine][coversed-sine] is defined as
- Half-value coversed sine. + Half-value coversed sine.
diff --git a/package.json b/package.json index ac1e3f5..fa5a11e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/math-base-special-hacoversin", - "version": "0.0.4", + "version": "0.0.5", "description": "Compute the half-value coversed sine.", "license": "Apache-2.0", "author": {