diff --git a/CHANGELOG.md b/CHANGELOG.md index 9120733..79771c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,15 @@
-## Unreleased (2025-02-08) +## Unreleased (2025-02-09)
### Closed Issues -This release closes the following issue: +A total of 2 issues were closed in this release: -[#4984](https://github.com/stdlib-js/stdlib/issues/4984) +[#4984](https://github.com/stdlib-js/stdlib/issues/4984), [#5126](https://github.com/stdlib-js/stdlib/issues/5126)
@@ -24,6 +24,7 @@ This release closes the following issue:
+- [`bd61ef0`](https://github.com/stdlib-js/stdlib/commit/bd61ef01645b4128484f9a87532724fdba990c03) - **bench:** address commit comments [(#5137)](https://github.com/stdlib-js/stdlib/pull/5137) _(by pranav-1720)_ - [`28b78a0`](https://github.com/stdlib-js/stdlib/commit/28b78a0590907a6757bc6fd4c9e88d9109280950) - **bench:** refactor random number generation in `stats/base/dists/poisson` [(#5106)](https://github.com/stdlib-js/stdlib/pull/5106) _(by pranav-1720)_
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 92b7253..d1062b3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -37,7 +37,7 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> Frank Kovacs Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi -Gururaj Gurram <143020143+gururaj1512@users.noreply.github.com> +Gururaj Gurram HarshaNP <96897754+GittyHarsha@users.noreply.github.com> Harshita Kalani Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> @@ -125,6 +125,8 @@ Vivek Maurya Xiaochuan Ye Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com> Yernar Yergaziyev +ekambains olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com> +pranav-1720 <123018993+pranav-1720@users.noreply.github.com> rainn <88160429+AmCodesLame@users.noreply.github.com> rei2hu diff --git a/benchmark/benchmark.js b/benchmark/benchmark.js index 4c00842..459a857 100644 --- a/benchmark/benchmark.js +++ b/benchmark/benchmark.js @@ -40,7 +40,7 @@ bench( pkg, function benchmark( b ) { len = 100; lambda = new Float64Array( len ); for ( i = 0; i < len; i++ ) { - lambda[ i ] = ( uniform( EPS, 20.0 )); + lambda[ i ] = uniform( EPS, 20.0 ); } b.tic(); for ( i = 0; i < b.iterations; i++ ) {