Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 22, 2024
1 parent 3a8376d commit fcb20d1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm_downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
# Upload the download data:
- name: 'Upload data'
# Pin action to full length commit SHA corresponding to v3.1.3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
# Pin action to full length commit SHA
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
# Define a name for the uploaded artifact (ensuring a unique name for each job):
name: npm_downloads
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,10 @@ jobs:
mv ./package.json.tmp ./package.json
fi
done
jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do
if [[ "$dep" != "@stdlib"* ]]; then
continue
fi
dep=$(echo "$dep" | xargs)
if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
fi
done
# Set `devDependencies` to an empty object:
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
# Remove CLI section:
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/napi-argv-int8array.svg
[npm-url]: https://npmjs.org/package/@stdlib/napi-argv-int8array
[test-image]: https://github.com/stdlib-js/napi-argv-int8array/actions/workflows/test.yml/badge.svg?branch=v0.2.0
[test-url]: https://github.com/stdlib-js/napi-argv-int8array/actions/workflows/test.yml?query=branch:v0.2.0
[test-image]: https://github.com/stdlib-js/napi-argv-int8array/actions/workflows/test.yml/badge.svg?branch=v0.2.1
[test-url]: https://github.com/stdlib-js/napi-argv-int8array/actions/workflows/test.yml?query=branch:v0.2.1
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/napi-argv-int8array/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/napi-argv-int8array?branch=main
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/napi-argv-int8array",
"version": "0.2.0",
"version": "0.2.1",
"description": "Convert a Node-API value to a signed 8-bit integer array.",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -39,17 +39,17 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/assert-napi-equal-typedarray-types": "^0.2.0",
"@stdlib/assert-napi-is-typedarray": "^0.2.0",
"@stdlib/assert-napi-status-ok": "^0.2.0",
"@stdlib/napi-argv": "^0.2.0",
"@stdlib/utils-library-manifest": "^0.2.0"
"@stdlib/assert-napi-equal-typedarray-types": "^0.2.1",
"@stdlib/assert-napi-is-typedarray": "^0.2.1",
"@stdlib/assert-napi-status-ok": "^0.2.1",
"@stdlib/napi-argv": "^0.2.1",
"@stdlib/utils-library-manifest": "^0.2.1"
},
"devDependencies": {
"@stdlib/array-filled": "^0.1.0",
"@stdlib/array-typed": "^0.1.0",
"@stdlib/assert-is-browser": "^0.1.1",
"@stdlib/utils-try-require": "^0.2.0",
"@stdlib/array-filled": "^0.2.0",
"@stdlib/array-typed": "^0.2.0",
"@stdlib/assert-is-browser": "^0.2.1",
"@stdlib/utils-try-require": "^0.2.1",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
Expand Down

0 comments on commit fcb20d1

Please sign in to comment.