Skip to content

Commit d8ef901

Browse files
committed
Release v0.2.1
1 parent 2e79178 commit d8ef901

File tree

6 files changed

+33
-33
lines changed

6 files changed

+33
-33
lines changed

.github/workflows/npm_downloads.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ jobs:
8686
8787
# Upload the download data:
8888
- name: 'Upload data'
89-
# Pin action to full length commit SHA corresponding to v3.1.3
90-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
89+
# Pin action to full length commit SHA
90+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
9191
with:
9292
# Define a name for the uploaded artifact (ensuring a unique name for each job):
9393
name: npm_downloads

.github/workflows/publish.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,10 @@ jobs:
124124
mv ./package.json.tmp ./package.json
125125
fi
126126
done
127-
jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do
128-
if [[ "$dep" != "@stdlib"* ]]; then
129-
continue
130-
fi
131-
dep=$(echo "$dep" | xargs)
132-
if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
133-
jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
134-
mv ./package.json.tmp ./package.json
135-
fi
136-
done
127+
128+
# Set `devDependencies` to an empty object:
129+
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
130+
mv ./package.json.tmp ./package.json
137131
138132
# Remove CLI section:
139133
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"

.github/workflows/publish_cli.yml

+6
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ jobs:
105105
SLUG=${{ github.repository }}
106106
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" --follow-tags
107107
108+
# Remove development dependencies from package.json:
109+
- name: 'Remove development dependencies from package.json'
110+
run: |
111+
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
112+
mv ./package.json.tmp ./package.json
113+
108114
# Replace GitHub MathJax equations with SVGs:
109115
- name: 'Replace GitHub MathJax equations with SVGs'
110116
run: |

.github/workflows/test_bundles.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ jobs:
168168

169169
# Install Deno:
170170
- name: 'Install Deno'
171-
# Pin action to full length commit SHA corresponding to v1.1.2
172-
uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31
171+
# Pin action to full length commit SHA
172+
uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
173173
with:
174174
deno-version: vx.x.x
175175

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
259259
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-binary-string.svg
260260
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-binary-string
261261

262-
[test-image]: https://github.com/stdlib-js/assert-is-binary-string/actions/workflows/test.yml/badge.svg?branch=v0.2.0
263-
[test-url]: https://github.com/stdlib-js/assert-is-binary-string/actions/workflows/test.yml?query=branch:v0.2.0
262+
[test-image]: https://github.com/stdlib-js/assert-is-binary-string/actions/workflows/test.yml/badge.svg?branch=v0.2.1
263+
[test-url]: https://github.com/stdlib-js/assert-is-binary-string/actions/workflows/test.yml?query=branch:v0.2.1
264264

265265
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-binary-string/main.svg
266266
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-binary-string?branch=main

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/assert-is-binary-string",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Test if a value is a binary string.",
55
"license": "Apache-2.0",
66
"author": {
@@ -40,28 +40,28 @@
4040
"url": "https://github.com/stdlib-js/stdlib/issues"
4141
},
4242
"dependencies": {
43-
"@stdlib/assert-is-regexp-string": "^0.2.0",
44-
"@stdlib/assert-is-string": "^0.2.0",
45-
"@stdlib/cli-ctor": "^0.1.1",
46-
"@stdlib/fs-read-file": "^0.2.0",
47-
"@stdlib/process-read-stdin": "^0.2.0",
48-
"@stdlib/regexp-eol": "^0.2.0",
49-
"@stdlib/streams-node-stdin": "^0.2.0",
50-
"@stdlib/utils-regexp-from-string": "^0.2.0"
43+
"@stdlib/assert-is-regexp-string": "^0.2.1",
44+
"@stdlib/assert-is-string": "^0.2.1",
45+
"@stdlib/cli-ctor": "^0.2.1",
46+
"@stdlib/fs-read-file": "^0.2.1",
47+
"@stdlib/process-read-stdin": "^0.2.1",
48+
"@stdlib/regexp-eol": "^0.2.1",
49+
"@stdlib/streams-node-stdin": "^0.2.1",
50+
"@stdlib/utils-regexp-from-string": "^0.2.1"
5151
},
5252
"devDependencies": {
53-
"@stdlib/assert-is-boolean": "^0.1.1",
54-
"@stdlib/assert-is-browser": "^0.1.1",
55-
"@stdlib/assert-is-windows": "^0.1.1",
56-
"@stdlib/math-base-special-pow": "^0.1.0",
57-
"@stdlib/process-exec-path": "^0.1.1",
58-
"@stdlib/random-base-randu": "^0.1.0",
59-
"@stdlib/string-replace": "^0.1.1",
53+
"@stdlib/assert-is-boolean": "^0.2.1",
54+
"@stdlib/assert-is-browser": "^0.2.1",
55+
"@stdlib/assert-is-windows": "^0.2.1",
56+
"@stdlib/math-base-special-pow": "^0.2.0",
57+
"@stdlib/process-exec-path": "^0.2.1",
58+
"@stdlib/random-base-randu": "^0.2.0",
59+
"@stdlib/string-replace": "^0.2.1",
6060
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6161
"proxyquire": "^2.0.0",
6262
"istanbul": "^0.4.1",
6363
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
64-
"@stdlib/bench-harness": "^0.1.2"
64+
"@stdlib/bench-harness": "^0.2.0"
6565
},
6666
"engines": {
6767
"node": ">=0.10.0",

0 commit comments

Comments
 (0)