@stdlib/random-array-levy 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +5 -5
- package/docs/types/index.d.ts +1 -1
- package/package.json +5 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -413,7 +413,7 @@ See [LICENSE][stdlib-license].
|
|
|
413
413
|
|
|
414
414
|
## Copyright
|
|
415
415
|
|
|
416
|
-
Copyright © 2016-
|
|
416
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
417
417
|
|
|
418
418
|
</section>
|
|
419
419
|
|
|
@@ -426,8 +426,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
426
426
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-array-levy.svg
|
|
427
427
|
[npm-url]: https://npmjs.org/package/@stdlib/random-array-levy
|
|
428
428
|
|
|
429
|
-
[test-image]: https://github.com/stdlib-js/random-array-levy/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
430
|
-
[test-url]: https://github.com/stdlib-js/random-array-levy/actions/workflows/test.yml?query=branch:v0.2.
|
|
429
|
+
[test-image]: https://github.com/stdlib-js/random-array-levy/actions/workflows/test.yml/badge.svg?branch=v0.2.2
|
|
430
|
+
[test-url]: https://github.com/stdlib-js/random-array-levy/actions/workflows/test.yml?query=branch:v0.2.2
|
|
431
431
|
|
|
432
432
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-array-levy/main.svg
|
|
433
433
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-array-levy?branch=main
|
|
@@ -439,8 +439,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
439
439
|
|
|
440
440
|
-->
|
|
441
441
|
|
|
442
|
-
[chat-image]: https://img.shields.io/
|
|
443
|
-
[chat-url]: https://
|
|
442
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
443
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
444
444
|
|
|
445
445
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
446
446
|
|
package/docs/types/index.d.ts
CHANGED
|
@@ -189,7 +189,7 @@ interface Random extends PRNG {
|
|
|
189
189
|
* var x = zeros( 10, 'float64' );
|
|
190
190
|
* // returns <Float64Array>
|
|
191
191
|
*
|
|
192
|
-
* var out = levy( 2.0, 5.0,
|
|
192
|
+
* var out = levy( 2.0, 5.0, x );
|
|
193
193
|
* // returns <Float64Array>
|
|
194
194
|
*
|
|
195
195
|
* var bool = ( out === x );
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-array-levy",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Create an array containing pseudorandom numbers drawn from a Lévy distribution.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/array-defaults": "^0.
|
|
34
|
-
"@stdlib/array-dtypes": "^0.
|
|
35
|
-
"@stdlib/random-array-tools-binary-factory": "^0.2.
|
|
33
|
+
"@stdlib/array-defaults": "^0.4.1",
|
|
34
|
+
"@stdlib/array-dtypes": "^0.4.1",
|
|
35
|
+
"@stdlib/random-array-tools-binary-factory": "^0.2.3",
|
|
36
36
|
"@stdlib/random-base-levy": "^0.2.1",
|
|
37
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.
|
|
37
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {},
|
|
40
40
|
"engines": {
|