diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a1aec..2faea88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-09-25) +## Unreleased (2024-09-26)
@@ -34,7 +34,8 @@ This release closes the following issue:
-- [`5742947`](https://github.com/stdlib-js/stdlib/commit/5742947f31198648b2f753e1f9322367c9e3ae06) - **feat:** add `array/base/cuany-by-right` [(#2667)](https://github.com/stdlib-js/stdlib/pull/2667) _(by DebashisMaharana, Philipp Burckhardt)_ +- [`6207381`](https://github.com/stdlib-js/stdlib/commit/62073818e83d5bdd87b2b8ffea18a43767f1ae29) - **chore:** minor clean-up _(by Philipp Burckhardt)_ +- [`5742947`](https://github.com/stdlib-js/stdlib/commit/5742947f31198648b2f753e1f9322367c9e3ae06) - **feat:** add `array/base/cuany-by-right` [(#2667)](https://github.com/stdlib-js/stdlib/pull/2667) _(by Debashis Maharana, Philipp Burckhardt)_
@@ -48,7 +49,7 @@ This release closes the following issue: A total of 2 people contributed to this release. Thank you to the following contributors: -- DebashisMaharana +- Debashis Maharana - Philipp Burckhardt
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3a0c547..338044b 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -21,6 +21,7 @@ Christopher Dambamuromo Dan Rose Daniel Killenberger Daniel Yu <40680511+Daniel777y@users.noreply.github.com> +DebashisMaharana <145602692+DevMhrn@users.noreply.github.com> Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> diff --git a/README.md b/README.md index 07df6f6..51a9f3a 100644 --- a/README.md +++ b/README.md @@ -149,13 +149,13 @@ The function supports the following parameters: ```javascript +var bernoulli = require( '@stdlib/random-array-bernoulli' ); +var cuanyByRight = require( '@stdlib/array-base-cuany-by-right' ); + function isPositive( value ) { return ( value > 0 ); } -var bernoulli = require( '@stdlib/random-array-bernoulli' ); -var cuanyByRight = require( '@stdlib/array-base-cuany-by-right' ); - // Create an array of random values: var x = bernoulli( 10, 0.1 ); console.log( x );