Skip to content

Commit

Permalink
Release v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 22, 2021
1 parent b8992d3 commit 382e3da
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmark.yml
Expand Up @@ -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
6 changes: 4 additions & 2 deletions .github/workflows/examples.yml
Expand Up @@ -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
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -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'
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -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: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test_coverage.yml
Expand Up @@ -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
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test_install.yml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -31,7 +31,7 @@ The half-value [coversed sine][coversed-sine] is defined as
<!-- <equation class="equation" label="eq:hacoversine" align="center" raw="\operatorname{hacoversin}(\theta) = \frac{1 - \sin \theta}{2}" alt="Half-value coversed sine."> -->

<div class="equation" align="center" data-raw-text="\operatorname{hacoversin}(\theta) = \frac{1 - \sin \theta}{2}" data-equation="eq:hacoversine">
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@7e0a95722efd9c771b129597380c63dc6715508b/lib/node_modules/@stdlib/math/base/special/hacoversin/docs/img/equation_hacoversine.svg" alt="Half-value coversed sine.">
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/hacoversin/docs/img/equation_hacoversine.svg" alt="Half-value coversed sine.">
<br>
</div>

Expand Down
2 changes: 1 addition & 1 deletion 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": {
Expand Down

0 comments on commit 382e3da

Please sign in to comment.