Skip to content

Commit 55bed5f

Browse files
committed
Release v0.2.1
1 parent 6af1a8d commit 55bed5f

File tree

6 files changed

+39
-41
lines changed

6 files changed

+39
-41
lines changed

Diff for: .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

Diff for: .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 \-\->//"

Diff for: .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

Diff for: CONTRIBUTORS

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aditya Sapra <[email protected]>
56
Ali Salesi <[email protected]>
67
Amit Jimiwal <[email protected]>
78
Athan Reines <[email protected]>
@@ -13,6 +14,7 @@ Daniel Killenberger <[email protected]>
1314
Dominik Moritz <[email protected]>
1415
Dorrin Sotoudeh <[email protected]>
1516
Frank Kovacs <[email protected]>
17+
GUNJ JOSHI <[email protected]>
1618
Harshita Kalani <[email protected]>
1719
James Gelok <[email protected]>
1820
Jaysukh Makvana <[email protected]>
@@ -21,6 +23,7 @@ Joey Reed <[email protected]>
2123
Jordan Gallivan <[email protected]>
2224
Joris Labie <[email protected]>
2325
Justin Dennison <[email protected]>
26+
Karthik Prakash <[email protected]>
2427
Marcus Fantham <[email protected]>
2528
Matt Cochrane <[email protected]>
2629
Milan Raj <[email protected]>
@@ -36,6 +39,7 @@ Roman Stetsyk <[email protected]>
3639
Ryan Seal <[email protected]>
3740
Seyyed Parsa Neshaei <[email protected]>
3841
Shraddheya Shendre <[email protected]>
42+
Spandan Barve <[email protected]>
3943
Stephannie Jiménez Gacha <[email protected]>
4044
Yernar Yergaziyev <[email protected]>
4145
orimiles5 <[email protected]>

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
220220
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-append.svg
221221
[npm-url]: https://npmjs.org/package/@stdlib/utils-append
222222

223-
[test-image]: https://github.com/stdlib-js/utils-append/actions/workflows/test.yml/badge.svg?branch=v0.2.0
224-
[test-url]: https://github.com/stdlib-js/utils-append/actions/workflows/test.yml?query=branch:v0.2.0
223+
[test-image]: https://github.com/stdlib-js/utils-append/actions/workflows/test.yml/badge.svg?branch=v0.2.1
224+
[test-url]: https://github.com/stdlib-js/utils-append/actions/workflows/test.yml?query=branch:v0.2.1
225225

226226
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-append/main.svg
227227
[coverage-url]: https://codecov.io/github/stdlib-js/utils-append?branch=main

Diff for: package.json

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/utils-append",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Add elements from one collection to the end of another collection.",
55
"license": "Apache-2.0",
66
"author": {
@@ -37,35 +37,35 @@
3737
"url": "https://github.com/stdlib-js/stdlib/issues"
3838
},
3939
"dependencies": {
40-
"@stdlib/array-buffer": "^0.2.0",
41-
"@stdlib/assert-is-array": "^0.2.0",
42-
"@stdlib/assert-is-collection": "^0.2.0",
43-
"@stdlib/assert-is-integer": "^0.2.0",
44-
"@stdlib/assert-is-typed-array-like": "^0.2.0",
45-
"@stdlib/math-base-special-ceil2": "^0.2.0",
46-
"@stdlib/string-format": "^0.2.0",
47-
"@stdlib/types": "^0.3.1"
40+
"@stdlib/array-buffer": "^0.2.1",
41+
"@stdlib/assert-is-array": "^0.2.1",
42+
"@stdlib/assert-is-collection": "^0.2.1",
43+
"@stdlib/assert-is-integer": "^0.2.1",
44+
"@stdlib/assert-is-typed-array-like": "^0.2.1",
45+
"@stdlib/math-base-special-ceil2": "^0.2.1",
46+
"@stdlib/string-format": "^0.2.1",
47+
"@stdlib/types": "^0.3.2"
4848
},
4949
"devDependencies": {
50-
"@stdlib/array-float32": "^0.1.1",
51-
"@stdlib/array-float64": "^0.1.1",
52-
"@stdlib/array-int16": "^0.1.1",
53-
"@stdlib/array-int32": "^0.1.1",
54-
"@stdlib/array-int8": "^0.1.1",
55-
"@stdlib/array-uint16": "^0.1.1",
56-
"@stdlib/array-uint32": "^0.1.1",
57-
"@stdlib/array-uint8": "^0.1.1",
58-
"@stdlib/array-uint8c": "^0.1.1",
59-
"@stdlib/constants-int16-max": "^0.2.0",
60-
"@stdlib/constants-int32-max": "^0.1.1",
61-
"@stdlib/constants-int8-max": "^0.2.0",
62-
"@stdlib/constants-uint16-max": "^0.2.0",
63-
"@stdlib/constants-uint32-max": "^0.1.1",
64-
"@stdlib/constants-uint8-max": "^0.2.0",
50+
"@stdlib/array-float32": "^0.2.1",
51+
"@stdlib/array-float64": "^0.2.1",
52+
"@stdlib/array-int16": "^0.2.1",
53+
"@stdlib/array-int32": "^0.2.1",
54+
"@stdlib/array-int8": "^0.2.1",
55+
"@stdlib/array-uint16": "^0.2.1",
56+
"@stdlib/array-uint32": "^0.2.1",
57+
"@stdlib/array-uint8": "^0.2.1",
58+
"@stdlib/array-uint8c": "^0.2.1",
59+
"@stdlib/constants-int16-max": "^0.2.1",
60+
"@stdlib/constants-int32-max": "^0.2.1",
61+
"@stdlib/constants-int8-max": "^0.2.1",
62+
"@stdlib/constants-uint16-max": "^0.2.1",
63+
"@stdlib/constants-uint32-max": "^0.2.1",
64+
"@stdlib/constants-uint8-max": "^0.2.1",
6565
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6666
"istanbul": "^0.4.1",
6767
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
68-
"@stdlib/bench-harness": "^0.2.0"
68+
"@stdlib/bench-harness": "^0.2.1"
6969
},
7070
"engines": {
7171
"node": ">=0.10.0",

0 commit comments

Comments
 (0)