Skip to content

Commit e9b49cb

Browse files
committed
Release v0.2.1
1 parent 65251c8 commit e9b49cb

File tree

6 files changed

+65
-66
lines changed

6 files changed

+65
-66
lines changed

.github/workflows/npm_downloads.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 4 additions & 10 deletions
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/test_bundles.yml

Lines changed: 2 additions & 2 deletions
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

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aditya Sapra <110766802+adityacodes30@users.noreply.github.com>
56
Ali Salesi <ali_sal1381@yahoo.com>
67
Amit Jimiwal <amitjimiwal45@gmail.com>
78
Athan Reines <kgryte@gmail.com>
@@ -13,6 +14,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
1314
Dominik Moritz <domoritz@gmail.com>
1415
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1516
Frank Kovacs <fran70kk@gmail.com>
17+
GUNJ JOSHI <gunjjoshi8372@gmail.com>
1618
Harshita Kalani <harshitakalani02@gmail.com>
1719
James Gelok <jdgelok@gmail.com>
1820
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
@@ -21,6 +23,7 @@ Joey Reed <joeyrreed@gmail.com>
2123
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
2224
Joris Labie <joris.labie1@gmail.com>
2325
Justin Dennison <justin1dennison@gmail.com>
26+
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
2427
Marcus Fantham <mfantham@users.noreply.github.com>
2528
Matt Cochrane <matthew.cochrane.eng@gmail.com>
2629
Milan Raj <rajsite@users.noreply.github.com>
@@ -29,13 +32,15 @@ Naresh Jagadeesan <naresh.naresh000@gmail.com>
2932
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
3033
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
3134
Philipp Burckhardt <pburckhardt@outlook.com>
35+
Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
3236
Pranav Goswami <goswami.4@iitj.ac.in>
3337
Ricky Reusser <rsreusser@gmail.com>
3438
Robert Gislason <gztown2216@yahoo.com>
3539
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3640
Ryan Seal <splrk@users.noreply.github.com>
3741
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
3842
Shraddheya Shendre <shendreshraddheya@gmail.com>
43+
Spandan Barve <114365550+marsian83@users.noreply.github.com>
3944
Stephannie Jiménez Gacha <steff456@hotmail.com>
4045
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
4146
orimiles5 <97595296+orimiles5@users.noreply.github.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13484,8 +13484,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
1348413484
[npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-base-unary.svg
1348513485
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-base-unary
1348613486

13487-
[test-image]: https://github.com/stdlib-js/ndarray-base-unary/actions/workflows/test.yml/badge.svg?branch=v0.2.0
13488-
[test-url]: https://github.com/stdlib-js/ndarray-base-unary/actions/workflows/test.yml?query=branch:v0.2.0
13487+
[test-image]: https://github.com/stdlib-js/ndarray-base-unary/actions/workflows/test.yml/badge.svg?branch=v0.2.1
13488+
[test-url]: https://github.com/stdlib-js/ndarray-base-unary/actions/workflows/test.yml?query=branch:v0.2.1
1348913489

1349013490
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base-unary/main.svg
1349113491
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base-unary?branch=main

package.json

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/ndarray-base-unary",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Apply a unary callback to elements in a input ndarray and assign results to elements in an output ndarray.",
55
"license": "Apache-2.0",
66
"author": {
@@ -40,60 +40,60 @@
4040
"url": "https://github.com/stdlib-js/stdlib/issues"
4141
},
4242
"dependencies": {
43-
"@stdlib/complex-float32": "^0.2.0",
44-
"@stdlib/complex-float64": "^0.2.0",
45-
"@stdlib/ndarray-base-bytes-per-element": "^0.2.0",
46-
"@stdlib/ndarray-base-iteration-order": "^0.2.0",
47-
"@stdlib/ndarray-base-minmax-view-buffer-index": "^0.2.0",
48-
"@stdlib/ndarray-base-ndarraylike2object": "^0.2.0",
49-
"@stdlib/ndarray-base-numel": "^0.2.0",
50-
"@stdlib/ndarray-base-unary-loop-interchange-order": "^0.2.0",
51-
"@stdlib/ndarray-base-unary-tiling-block-size": "^0.2.0",
52-
"@stdlib/ndarray-base-vind2bind": "^0.2.0",
53-
"@stdlib/ndarray-ctor": "^0.2.0",
54-
"@stdlib/ndarray-index-modes": "^0.2.0",
55-
"@stdlib/ndarray-orders": "^0.2.0",
56-
"@stdlib/types": "^0.3.1",
57-
"@stdlib/utils-library-manifest": "^0.2.0"
43+
"@stdlib/complex-float32": "^0.2.1",
44+
"@stdlib/complex-float64": "^0.2.1",
45+
"@stdlib/ndarray-base-bytes-per-element": "^0.2.1",
46+
"@stdlib/ndarray-base-iteration-order": "^0.2.1",
47+
"@stdlib/ndarray-base-minmax-view-buffer-index": "^0.2.1",
48+
"@stdlib/ndarray-base-ndarraylike2object": "^0.2.1",
49+
"@stdlib/ndarray-base-numel": "^0.2.1",
50+
"@stdlib/ndarray-base-unary-loop-interchange-order": "^0.2.1",
51+
"@stdlib/ndarray-base-unary-tiling-block-size": "^0.2.1",
52+
"@stdlib/ndarray-base-vind2bind": "^0.2.1",
53+
"@stdlib/ndarray-ctor": "^0.2.1",
54+
"@stdlib/ndarray-index-modes": "^0.2.1",
55+
"@stdlib/ndarray-orders": "^0.2.1",
56+
"@stdlib/types": "^0.3.2",
57+
"@stdlib/utils-library-manifest": "^0.2.1"
5858
},
5959
"devDependencies": {
60-
"@stdlib/array-filled": "^0.1.0",
61-
"@stdlib/array-filled-by": "^0.1.0",
62-
"@stdlib/array-typed-complex-ctors": "^0.2.0",
63-
"@stdlib/blas-base-gscal": "^0.2.0",
64-
"@stdlib/fs-read-dir": "^0.2.0",
65-
"@stdlib/fs-read-file": "^0.2.0",
66-
"@stdlib/fs-read-json": "^0.2.0",
67-
"@stdlib/fs-unlink": "^0.2.0",
68-
"@stdlib/fs-write-file": "^0.2.0",
69-
"@stdlib/math-base-assert-is-nan": "^0.2.0",
70-
"@stdlib/math-base-special-abs": "^0.2.0",
71-
"@stdlib/math-base-special-cbrt": "^0.2.0",
72-
"@stdlib/math-base-special-floor": "^0.2.0",
73-
"@stdlib/math-base-special-identity": "^0.2.0",
74-
"@stdlib/math-base-special-pow": "^0.2.0",
75-
"@stdlib/math-base-special-round": "^0.2.0",
76-
"@stdlib/math-base-special-sqrt": "^0.2.0",
77-
"@stdlib/ndarray-base-char2dtype": "^0.2.0",
78-
"@stdlib/ndarray-base-dtype-char": "^0.2.0",
79-
"@stdlib/ndarray-base-dtype-desc": "^0.2.0",
80-
"@stdlib/ndarray-base-dtype2c": "^0.2.0",
81-
"@stdlib/ndarray-base-shape2strides": "^0.2.0",
82-
"@stdlib/ndarray-base-to-array": "^0.2.0",
83-
"@stdlib/ndarray-dtypes": "^0.2.0",
84-
"@stdlib/ndarray-safe-casts": "^0.2.0",
85-
"@stdlib/random-base-discrete-uniform": "^0.1.0",
86-
"@stdlib/random-base-randu": "^0.1.0",
87-
"@stdlib/string-format": "^0.2.0",
88-
"@stdlib/string-replace": "^0.2.0",
89-
"@stdlib/string-substring-after": "^0.2.0",
90-
"@stdlib/string-substring-before": "^0.2.0",
91-
"@stdlib/string-uppercase": "^0.2.0",
92-
"@stdlib/time-current-year": "^0.2.0",
60+
"@stdlib/array-filled": "^0.2.0",
61+
"@stdlib/array-filled-by": "^0.2.0",
62+
"@stdlib/array-typed-complex-ctors": "^0.2.1",
63+
"@stdlib/blas-base-gscal": "^0.2.1",
64+
"@stdlib/fs-read-dir": "^0.2.1",
65+
"@stdlib/fs-read-file": "^0.2.1",
66+
"@stdlib/fs-read-json": "^0.2.1",
67+
"@stdlib/fs-unlink": "^0.2.1",
68+
"@stdlib/fs-write-file": "^0.2.1",
69+
"@stdlib/math-base-assert-is-nan": "^0.2.1",
70+
"@stdlib/math-base-special-abs": "^0.2.1",
71+
"@stdlib/math-base-special-cbrt": "^0.2.1",
72+
"@stdlib/math-base-special-floor": "^0.2.1",
73+
"@stdlib/math-base-special-identity": "^0.2.1",
74+
"@stdlib/math-base-special-pow": "^0.2.1",
75+
"@stdlib/math-base-special-round": "^0.2.1",
76+
"@stdlib/math-base-special-sqrt": "^0.2.1",
77+
"@stdlib/ndarray-base-char2dtype": "^0.2.1",
78+
"@stdlib/ndarray-base-dtype-char": "^0.2.1",
79+
"@stdlib/ndarray-base-dtype-desc": "^0.2.1",
80+
"@stdlib/ndarray-base-dtype2c": "^0.2.1",
81+
"@stdlib/ndarray-base-shape2strides": "^0.2.1",
82+
"@stdlib/ndarray-base-to-array": "^0.2.1",
83+
"@stdlib/ndarray-dtypes": "^0.2.1",
84+
"@stdlib/ndarray-safe-casts": "^0.2.1",
85+
"@stdlib/random-base-discrete-uniform": "^0.2.0",
86+
"@stdlib/random-base-randu": "^0.2.0",
87+
"@stdlib/string-format": "^0.2.1",
88+
"@stdlib/string-replace": "^0.2.1",
89+
"@stdlib/string-substring-after": "^0.2.1",
90+
"@stdlib/string-substring-before": "^0.2.1",
91+
"@stdlib/string-uppercase": "^0.2.1",
92+
"@stdlib/time-current-year": "^0.2.1",
9393
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
9494
"istanbul": "^0.4.1",
9595
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
96-
"@stdlib/bench-harness": "^0.2.0"
96+
"@stdlib/bench-harness": "^0.2.1"
9797
},
9898
"engines": {
9999
"node": ">=0.10.0",

0 commit comments

Comments
 (0)