Skip to content

Commit bb5b0ef

Browse files
committed
Release v0.2.1
1 parent b3c203b commit bb5b0ef

File tree

6 files changed

+140
-141
lines changed

6 files changed

+140
-141
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 <[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]>
@@ -29,13 +32,15 @@ Naresh Jagadeesan <[email protected]>
2932
Nithin Katta <[email protected]>
3033
Ognjen Jevremović <[email protected]>
3134
Philipp Burckhardt <[email protected]>
35+
Prajwal Kulkarni <[email protected]>
3236
Pranav Goswami <[email protected]>
3337
Ricky Reusser <[email protected]>
3438
Robert Gislason <[email protected]>
3539
Roman Stetsyk <[email protected]>
3640
Ryan Seal <[email protected]>
3741
Seyyed Parsa Neshaei <[email protected]>
3842
Shraddheya Shendre <[email protected]>
43+
Spandan Barve <[email protected]>
3944
Stephannie Jiménez Gacha <[email protected]>
4045
Yernar Yergaziyev <[email protected]>
4146
orimiles5 <[email protected]>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
190190
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-array.svg
191191
[npm-url]: https://npmjs.org/package/@stdlib/random-array
192192

193-
[test-image]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml/badge.svg?branch=v0.2.0
194-
[test-url]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml?query=branch:v0.2.0
193+
[test-image]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml/badge.svg?branch=v0.2.1
194+
[test-url]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml?query=branch:v0.2.1
195195

196196
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-array/main.svg
197197
[coverage-url]: https://codecov.io/github/stdlib-js/random-array?branch=main

package.json

Lines changed: 125 additions & 125 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/random-array",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Pseudorandom number generator array creation functions.",
55
"license": "Apache-2.0",
66
"author": {
@@ -36,135 +36,135 @@
3636
"url": "https://github.com/stdlib-js/stdlib/issues"
3737
},
3838
"dependencies": {
39-
"@stdlib/random-array-arcsine": "^0.2.0",
40-
"@stdlib/random-array-bernoulli": "^0.2.0",
41-
"@stdlib/random-array-beta": "^0.2.0",
42-
"@stdlib/random-array-betaprime": "^0.2.0",
43-
"@stdlib/random-array-binomial": "^0.2.0",
44-
"@stdlib/random-array-cauchy": "^0.2.0",
45-
"@stdlib/random-array-chi": "^0.2.0",
46-
"@stdlib/random-array-chisquare": "^0.2.0",
47-
"@stdlib/random-array-cosine": "^0.2.0",
48-
"@stdlib/random-array-discrete-uniform": "^0.2.0",
49-
"@stdlib/random-array-erlang": "^0.2.0",
50-
"@stdlib/random-array-exponential": "^0.2.0",
51-
"@stdlib/random-array-f": "^0.2.0",
52-
"@stdlib/random-array-frechet": "^0.2.0",
53-
"@stdlib/random-array-gamma": "^0.2.0",
54-
"@stdlib/random-array-geometric": "^0.2.0",
55-
"@stdlib/random-array-gumbel": "^0.2.0",
56-
"@stdlib/random-array-hypergeometric": "^0.2.0",
57-
"@stdlib/random-array-invgamma": "^0.2.0",
58-
"@stdlib/random-array-kumaraswamy": "^0.2.0",
59-
"@stdlib/random-array-laplace": "^0.2.0",
60-
"@stdlib/random-array-levy": "^0.2.0",
61-
"@stdlib/random-array-logistic": "^0.2.0",
62-
"@stdlib/random-array-lognormal": "^0.2.0",
63-
"@stdlib/random-array-minstd": "^0.2.0",
64-
"@stdlib/random-array-minstd-shuffle": "^0.2.0",
65-
"@stdlib/random-array-mt19937": "^0.2.0",
66-
"@stdlib/random-array-negative-binomial": "^0.2.0",
67-
"@stdlib/random-array-normal": "^0.2.0",
68-
"@stdlib/random-array-pareto-type1": "^0.2.0",
69-
"@stdlib/random-array-poisson": "^0.2.0",
70-
"@stdlib/random-array-randu": "^0.2.0",
71-
"@stdlib/random-array-rayleigh": "^0.2.0",
72-
"@stdlib/random-array-t": "^0.2.0",
73-
"@stdlib/random-array-triangular": "^0.2.0",
74-
"@stdlib/random-array-uniform": "^0.2.0",
75-
"@stdlib/random-array-weibull": "^0.2.0",
76-
"@stdlib/utils-define-read-only-property": "^0.2.0"
39+
"@stdlib/random-array-arcsine": "^0.2.1",
40+
"@stdlib/random-array-bernoulli": "^0.2.1",
41+
"@stdlib/random-array-beta": "^0.2.1",
42+
"@stdlib/random-array-betaprime": "^0.2.1",
43+
"@stdlib/random-array-binomial": "^0.2.1",
44+
"@stdlib/random-array-cauchy": "^0.2.1",
45+
"@stdlib/random-array-chi": "^0.2.1",
46+
"@stdlib/random-array-chisquare": "^0.2.1",
47+
"@stdlib/random-array-cosine": "^0.2.1",
48+
"@stdlib/random-array-discrete-uniform": "^0.2.1",
49+
"@stdlib/random-array-erlang": "^0.2.1",
50+
"@stdlib/random-array-exponential": "^0.2.1",
51+
"@stdlib/random-array-f": "^0.2.1",
52+
"@stdlib/random-array-frechet": "^0.2.1",
53+
"@stdlib/random-array-gamma": "^0.2.1",
54+
"@stdlib/random-array-geometric": "^0.2.1",
55+
"@stdlib/random-array-gumbel": "^0.2.1",
56+
"@stdlib/random-array-hypergeometric": "^0.2.1",
57+
"@stdlib/random-array-invgamma": "^0.2.1",
58+
"@stdlib/random-array-kumaraswamy": "^0.2.1",
59+
"@stdlib/random-array-laplace": "^0.2.1",
60+
"@stdlib/random-array-levy": "^0.2.1",
61+
"@stdlib/random-array-logistic": "^0.2.1",
62+
"@stdlib/random-array-lognormal": "^0.2.1",
63+
"@stdlib/random-array-minstd": "^0.2.1",
64+
"@stdlib/random-array-minstd-shuffle": "^0.2.1",
65+
"@stdlib/random-array-mt19937": "^0.2.1",
66+
"@stdlib/random-array-negative-binomial": "^0.2.1",
67+
"@stdlib/random-array-normal": "^0.2.1",
68+
"@stdlib/random-array-pareto-type1": "^0.2.1",
69+
"@stdlib/random-array-poisson": "^0.2.1",
70+
"@stdlib/random-array-randu": "^0.2.1",
71+
"@stdlib/random-array-rayleigh": "^0.2.1",
72+
"@stdlib/random-array-t": "^0.2.1",
73+
"@stdlib/random-array-triangular": "^0.2.1",
74+
"@stdlib/random-array-uniform": "^0.2.1",
75+
"@stdlib/random-array-weibull": "^0.2.1",
76+
"@stdlib/utils-define-read-only-property": "^0.2.1"
7777
},
7878
"devDependencies": {
79-
"@stdlib/array-base-assert-contains": "^0.2.0",
80-
"@stdlib/array-base-filled-by": "^0.1.0",
81-
"@stdlib/array-ctors": "^0.1.0",
82-
"@stdlib/array-defaults": "^0.2.0",
83-
"@stdlib/array-dtypes": "^0.2.0",
84-
"@stdlib/array-float32": "^0.2.0",
85-
"@stdlib/array-float64": "^0.2.0",
86-
"@stdlib/array-int32": "^0.2.0",
87-
"@stdlib/array-nans": "^0.2.0",
88-
"@stdlib/array-typed-real-ctors": "^0.2.0",
89-
"@stdlib/array-typed-real-dtypes": "^0.2.0",
90-
"@stdlib/array-typed-real-float-ctors": "^0.2.0",
91-
"@stdlib/array-typed-real-float-dtypes": "^0.2.0",
92-
"@stdlib/array-uint32": "^0.2.0",
93-
"@stdlib/array-zeros": "^0.1.0",
94-
"@stdlib/assert-has-own-property": "^0.2.0",
95-
"@stdlib/assert-is-collection": "^0.2.0",
96-
"@stdlib/assert-is-function": "^0.2.0",
97-
"@stdlib/assert-is-int32array": "^0.2.0",
98-
"@stdlib/assert-is-method-in": "^0.2.0",
99-
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
100-
"@stdlib/assert-is-plain-object": "^0.2.0",
101-
"@stdlib/assert-is-string-array": "^0.2.0",
102-
"@stdlib/assert-is-uint32array": "^0.2.0",
103-
"@stdlib/console-log-each": "^0.1.0",
104-
"@stdlib/constants-int32-max": "^0.2.0",
105-
"@stdlib/constants-uint32-max": "^0.2.0",
106-
"@stdlib/math-base-assert-is-nan": "^0.2.0",
107-
"@stdlib/math-base-assert-is-nanf": "^0.2.0",
108-
"@stdlib/math-base-special-pow": "^0.2.0",
109-
"@stdlib/random-array-tools-binary": "^0.2.0",
110-
"@stdlib/random-array-tools-binary-factory": "^0.2.0",
111-
"@stdlib/random-array-tools-nullary": "^0.2.0",
112-
"@stdlib/random-array-tools-ternary": "^0.2.0",
113-
"@stdlib/random-array-tools-ternary-factory": "^0.2.0",
114-
"@stdlib/random-array-tools-unary": "^0.2.0",
115-
"@stdlib/random-array-tools-unary-factory": "^0.2.0",
116-
"@stdlib/random-base-arcsine": "^0.1.0",
117-
"@stdlib/random-base-bernoulli": "^0.1.0",
118-
"@stdlib/random-base-beta": "^0.2.0",
119-
"@stdlib/random-base-betaprime": "^0.2.0",
120-
"@stdlib/random-base-binomial": "^0.1.0",
121-
"@stdlib/random-base-cauchy": "^0.2.0",
122-
"@stdlib/random-base-chi": "^0.2.0",
123-
"@stdlib/random-base-chisquare": "^0.2.0",
124-
"@stdlib/random-base-cosine": "^0.2.0",
125-
"@stdlib/random-base-discrete-uniform": "^0.1.0",
126-
"@stdlib/random-base-erlang": "^0.2.0",
127-
"@stdlib/random-base-exponential": "^0.1.0",
128-
"@stdlib/random-base-f": "^0.2.0",
129-
"@stdlib/random-base-frechet": "^0.2.0",
130-
"@stdlib/random-base-gamma": "^0.2.0",
131-
"@stdlib/random-base-geometric": "^0.1.0",
132-
"@stdlib/random-base-gumbel": "^0.2.0",
133-
"@stdlib/random-base-hypergeometric": "^0.1.0",
134-
"@stdlib/random-base-invgamma": "^0.2.0",
135-
"@stdlib/random-base-kumaraswamy": "^0.2.0",
136-
"@stdlib/random-base-laplace": "^0.2.0",
137-
"@stdlib/random-base-levy": "^0.2.0",
138-
"@stdlib/random-base-logistic": "^0.2.0",
139-
"@stdlib/random-base-lognormal": "^0.2.0",
140-
"@stdlib/random-base-minstd": "^0.1.0",
141-
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
142-
"@stdlib/random-base-mt19937": "^0.2.0",
143-
"@stdlib/random-base-negative-binomial": "^0.2.0",
144-
"@stdlib/random-base-normal": "^0.1.0",
145-
"@stdlib/random-base-pareto-type1": "^0.2.0",
146-
"@stdlib/random-base-poisson": "^0.1.0",
147-
"@stdlib/random-base-randu": "^0.1.0",
148-
"@stdlib/random-base-rayleigh": "^0.2.0",
149-
"@stdlib/random-base-t": "^0.2.0",
150-
"@stdlib/random-base-triangular": "^0.1.0",
151-
"@stdlib/random-base-uniform": "^0.1.0",
152-
"@stdlib/random-base-weibull": "^0.2.0",
153-
"@stdlib/strided-base-binary": "^0.2.0",
154-
"@stdlib/strided-base-nullary": "^0.2.0",
155-
"@stdlib/strided-base-ternary": "^0.2.0",
156-
"@stdlib/strided-base-unary": "^0.2.0",
157-
"@stdlib/string-format": "^0.2.0",
158-
"@stdlib/utils-constant-function": "^0.2.0",
159-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
160-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
161-
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.0",
162-
"@stdlib/utils-keys": "^0.2.0",
163-
"@stdlib/utils-noop": "^0.2.0",
79+
"@stdlib/array-base-assert-contains": "^0.2.1",
80+
"@stdlib/array-base-filled-by": "^0.2.1",
81+
"@stdlib/array-ctors": "^0.2.0",
82+
"@stdlib/array-defaults": "^0.2.1",
83+
"@stdlib/array-dtypes": "^0.2.1",
84+
"@stdlib/array-float32": "^0.2.1",
85+
"@stdlib/array-float64": "^0.2.1",
86+
"@stdlib/array-int32": "^0.2.1",
87+
"@stdlib/array-nans": "^0.2.1",
88+
"@stdlib/array-typed-real-ctors": "^0.2.1",
89+
"@stdlib/array-typed-real-dtypes": "^0.2.1",
90+
"@stdlib/array-typed-real-float-ctors": "^0.2.1",
91+
"@stdlib/array-typed-real-float-dtypes": "^0.2.1",
92+
"@stdlib/array-uint32": "^0.2.1",
93+
"@stdlib/array-zeros": "^0.2.0",
94+
"@stdlib/assert-has-own-property": "^0.2.1",
95+
"@stdlib/assert-is-collection": "^0.2.1",
96+
"@stdlib/assert-is-function": "^0.2.1",
97+
"@stdlib/assert-is-int32array": "^0.2.1",
98+
"@stdlib/assert-is-method-in": "^0.2.1",
99+
"@stdlib/assert-is-nonnegative-integer": "^0.2.1",
100+
"@stdlib/assert-is-plain-object": "^0.2.1",
101+
"@stdlib/assert-is-string-array": "^0.2.1",
102+
"@stdlib/assert-is-uint32array": "^0.2.1",
103+
"@stdlib/console-log-each": "^0.2.0",
104+
"@stdlib/constants-int32-max": "^0.2.1",
105+
"@stdlib/constants-uint32-max": "^0.2.1",
106+
"@stdlib/math-base-assert-is-nan": "^0.2.1",
107+
"@stdlib/math-base-assert-is-nanf": "^0.2.1",
108+
"@stdlib/math-base-special-pow": "^0.2.1",
109+
"@stdlib/random-array-tools-binary": "^0.2.1",
110+
"@stdlib/random-array-tools-binary-factory": "^0.2.1",
111+
"@stdlib/random-array-tools-nullary": "^0.2.1",
112+
"@stdlib/random-array-tools-ternary": "^0.2.1",
113+
"@stdlib/random-array-tools-ternary-factory": "^0.2.1",
114+
"@stdlib/random-array-tools-unary": "^0.2.1",
115+
"@stdlib/random-array-tools-unary-factory": "^0.2.1",
116+
"@stdlib/random-base-arcsine": "^0.2.0",
117+
"@stdlib/random-base-bernoulli": "^0.2.0",
118+
"@stdlib/random-base-beta": "^0.2.1",
119+
"@stdlib/random-base-betaprime": "^0.2.1",
120+
"@stdlib/random-base-binomial": "^0.2.0",
121+
"@stdlib/random-base-cauchy": "^0.2.1",
122+
"@stdlib/random-base-chi": "^0.2.1",
123+
"@stdlib/random-base-chisquare": "^0.2.1",
124+
"@stdlib/random-base-cosine": "^0.2.1",
125+
"@stdlib/random-base-discrete-uniform": "^0.2.0",
126+
"@stdlib/random-base-erlang": "^0.2.1",
127+
"@stdlib/random-base-exponential": "^0.2.0",
128+
"@stdlib/random-base-f": "^0.2.1",
129+
"@stdlib/random-base-frechet": "^0.2.1",
130+
"@stdlib/random-base-gamma": "^0.2.1",
131+
"@stdlib/random-base-geometric": "^0.2.0",
132+
"@stdlib/random-base-gumbel": "^0.2.1",
133+
"@stdlib/random-base-hypergeometric": "^0.2.0",
134+
"@stdlib/random-base-invgamma": "^0.2.1",
135+
"@stdlib/random-base-kumaraswamy": "^0.2.1",
136+
"@stdlib/random-base-laplace": "^0.2.1",
137+
"@stdlib/random-base-levy": "^0.2.1",
138+
"@stdlib/random-base-logistic": "^0.2.1",
139+
"@stdlib/random-base-lognormal": "^0.2.1",
140+
"@stdlib/random-base-minstd": "^0.2.0",
141+
"@stdlib/random-base-minstd-shuffle": "^0.2.0",
142+
"@stdlib/random-base-mt19937": "^0.2.1",
143+
"@stdlib/random-base-negative-binomial": "^0.2.1",
144+
"@stdlib/random-base-normal": "^0.2.0",
145+
"@stdlib/random-base-pareto-type1": "^0.2.1",
146+
"@stdlib/random-base-poisson": "^0.2.0",
147+
"@stdlib/random-base-randu": "^0.2.0",
148+
"@stdlib/random-base-rayleigh": "^0.2.1",
149+
"@stdlib/random-base-t": "^0.2.1",
150+
"@stdlib/random-base-triangular": "^0.2.0",
151+
"@stdlib/random-base-uniform": "^0.2.0",
152+
"@stdlib/random-base-weibull": "^0.2.1",
153+
"@stdlib/strided-base-binary": "^0.2.1",
154+
"@stdlib/strided-base-nullary": "^0.2.1",
155+
"@stdlib/strided-base-ternary": "^0.2.1",
156+
"@stdlib/strided-base-unary": "^0.2.1",
157+
"@stdlib/string-format": "^0.2.1",
158+
"@stdlib/utils-constant-function": "^0.2.1",
159+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.2",
160+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1",
161+
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.1",
162+
"@stdlib/utils-keys": "^0.2.1",
163+
"@stdlib/utils-noop": "^0.2.1",
164164
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
165165
"istanbul": "^0.4.1",
166166
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
167-
"@stdlib/bench-harness": "^0.2.0"
167+
"@stdlib/bench-harness": "^0.2.1"
168168
},
169169
"engines": {
170170
"node": ">=0.10.0",

0 commit comments

Comments
 (0)