@stdlib/random-array-laplace 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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2024 The Stdlib Authors.
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-2024. The Stdlib [Authors][stdlib-authors].
416
+ Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
417
417
 
418
418
  </section>
419
419
 
@@ -426,8 +426,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
426
426
  [npm-image]: http://img.shields.io/npm/v/@stdlib/random-array-laplace.svg
427
427
  [npm-url]: https://npmjs.org/package/@stdlib/random-array-laplace
428
428
 
429
- [test-image]: https://github.com/stdlib-js/random-array-laplace/actions/workflows/test.yml/badge.svg?branch=v0.2.1
430
- [test-url]: https://github.com/stdlib-js/random-array-laplace/actions/workflows/test.yml?query=branch:v0.2.1
429
+ [test-image]: https://github.com/stdlib-js/random-array-laplace/actions/workflows/test.yml/badge.svg?branch=v0.2.2
430
+ [test-url]: https://github.com/stdlib-js/random-array-laplace/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-laplace/main.svg
433
433
  [coverage-url]: https://codecov.io/github/stdlib-js/random-array-laplace?branch=main
@@ -439,8 +439,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
439
439
 
440
440
  -->
441
441
 
442
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
443
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
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
 
@@ -189,7 +189,7 @@ interface Random extends PRNG {
189
189
  * var x = zeros( 10, 'float64' );
190
190
  * // returns <Float64Array>
191
191
  *
192
- * var out = laplace( 2.0, 5.0, out );
192
+ * var out = laplace( 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-laplace",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Create an array containing pseudorandom numbers drawn from a Laplace (double exponential) 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.2.1",
34
- "@stdlib/array-dtypes": "^0.2.1",
35
- "@stdlib/random-array-tools-binary-factory": "^0.2.1",
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-laplace": "^0.2.1",
37
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
37
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3"
38
38
  },
39
39
  "devDependencies": {},
40
40
  "engines": {