Skip to content

Commit

Permalink
Release v0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 22, 2021
1 parent 3f62460 commit e955f3b
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 18 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
4 changes: 3 additions & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
5 changes: 4 additions & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,16 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
4 changes: 3 additions & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
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
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/ndarray",
"version": "0.0.12",
"version": "0.0.13",
"description": "Multidimensional arrays.",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -36,17 +36,17 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/array": "github:stdlib-js/array",
"@stdlib/assert": "github:stdlib-js/assert",
"@stdlib/bigint": "github:stdlib-js/bigint",
"@stdlib/buffer": "github:stdlib-js/buffer",
"@stdlib/complex": "github:stdlib-js/complex",
"@stdlib/constants": "github:stdlib-js/constants",
"@stdlib/math": "github:stdlib-js/math",
"@stdlib/number": "github:stdlib-js/number",
"@stdlib/string": "github:stdlib-js/string",
"@stdlib/types": "github:stdlib-js/types",
"@stdlib/utils": "github:stdlib-js/utils"
"@stdlib/array": "github:stdlib-js/array#main",
"@stdlib/assert": "github:stdlib-js/assert#main",
"@stdlib/bigint": "github:stdlib-js/bigint#main",
"@stdlib/buffer": "github:stdlib-js/buffer#main",
"@stdlib/complex": "github:stdlib-js/complex#main",
"@stdlib/constants": "github:stdlib-js/constants#main",
"@stdlib/math": "github:stdlib-js/math#main",
"@stdlib/number": "github:stdlib-js/number#main",
"@stdlib/string": "github:stdlib-js/string#main",
"@stdlib/types": "github:stdlib-js/types#main",
"@stdlib/utils": "github:stdlib-js/utils#main"
},
"devDependencies": {
"@stdlib/bench": "github:stdlib-js/bench",
Expand Down

0 comments on commit e955f3b

Please sign in to comment.