Skip to content

Commit 6741f77

Browse files
committed
Release v0.0.1
1 parent 713b082 commit 6741f77

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ jobs:
110110
exit 0
111111
fi
112112
rm -rf ./bin/cli
113-
rm test/test.cli.js
114-
rm etc/cli_opts.json
115-
rm docs/usage.txt
113+
rm -f test/test.cli.js
114+
rm -f etc/cli_opts.json
115+
rm -f docs/usage.txt
116116
117117
# For all dependencies, check in all *.js files if they are still used; if not, remove them:
118118
jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
@@ -162,8 +162,8 @@ jobs:
162162
# Remove unnecessary files:
163163
- name: 'Remove unnecessary files'
164164
run: |
165-
rm docs/repl.txt
166-
rm docs/types/test.ts
165+
rm -f docs/repl.txt
166+
rm -f docs/types/test.ts
167167
168168
# Replace all stdlib GitHub dependencies with the respective npm packages:
169169
- name: 'Replace all stdlib GitHub dependencies with the respective npm packages'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
194194
[npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-base-binary-loop-interchange-order.svg
195195
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-base-binary-loop-interchange-order
196196

197-
[test-image]: https://github.com/stdlib-js/ndarray-base-binary-loop-interchange-order/actions/workflows/test.yml/badge.svg?branch=main
198-
[test-url]: https://github.com/stdlib-js/ndarray-base-binary-loop-interchange-order/actions/workflows/test.yml?query=branch:main
197+
[test-image]: https://github.com/stdlib-js/ndarray-base-binary-loop-interchange-order/actions/workflows/test.yml/badge.svg?branch=v0.0.1
198+
[test-url]: https://github.com/stdlib-js/ndarray-base-binary-loop-interchange-order/actions/workflows/test.yml?query=branch:v0.0.1
199199

200200
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base-binary-loop-interchange-order/main.svg
201201
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base-binary-loop-interchange-order?branch=main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/ndarray-base-binary-loop-interchange-order",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Reorder ndarray dimensions and associated strides for loop interchange.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)