diff --git a/.gitignore b/.gitignore index 4fdc97c..16b03f7 100644 --- a/.gitignore +++ b/.gitignore @@ -188,3 +188,7 @@ jsconfig.json # Other editor files # ###################### .idea/ + +# Cursor # +########## +.cursorignore diff --git a/CHANGELOG.md b/CHANGELOG.md index 17b9bc6..9bd75fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2025-01-18) +## Unreleased (2025-02-20)
@@ -12,6 +12,7 @@
+- [`f7988d3`](https://github.com/stdlib-js/stdlib/commit/f7988d3c02e0eff3bd9bd7523b5dc975bb98dc0e) - **bench:** fix `isnan` checks in `stats/base/dists` [(#5296)](https://github.com/stdlib-js/stdlib/pull/5296) _(by Karan Anand)_ - [`802775e`](https://github.com/stdlib-js/stdlib/commit/802775ea028fb2a42041611187b6373b49f5f397) - **bench:** refactor random number generation in `stats/base/dists/bernoulli` [(#4775)](https://github.com/stdlib-js/stdlib/pull/4775) _(by Karan Anand, Athan Reines)_
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 92d7552..c6297ff 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -27,6 +27,7 @@ Daniel Killenberger Daniel Yu <40680511+Daniel777y@users.noreply.github.com> Debashis Maharana Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com> +Dev Goel <135586571+corsairier@users.noreply.github.com> Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com> Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com> Dominic Lim <46486515+domlimm@users.noreply.github.com> @@ -34,9 +35,12 @@ Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> Frank Kovacs +GK Bishnoi +Gaurav Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi -Gururaj Gurram <143020143+gururaj1512@users.noreply.github.com> +Gururaj Gurram +Harsh <149176984+hrshya@users.noreply.github.com> HarshaNP <96897754+GittyHarsha@users.noreply.github.com> Harshita Kalani Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> @@ -62,6 +66,7 @@ Marcus Fantham Matt Cochrane Mihir Pandit <129577900+MSP20086@users.noreply.github.com> Milan Raj +Mohammad Bin Aftab <48010758+MohammadBinAftab@users.noreply.github.com> Mohammad Kaif Momtchil Momtchev Muhammad Haris @@ -99,6 +104,7 @@ Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com> Sarthak Paandey <145528240+SarthakPaandey@users.noreply.github.com> Saurabh Singh Seyyed Parsa Neshaei +Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com> Shashank Shekhar Singh Shivam Ahir <11shivam00@gmail.com> Shraddheya Shendre @@ -109,6 +115,7 @@ Snehil Shah Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com> Spandan Barve Stephannie Jiménez Gacha +Suhaib Ilahi Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com> Tirtadwipa Manunggal Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com> @@ -123,6 +130,9 @@ Vivek Maurya Xiaochuan Ye Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com> Yernar Yergaziyev +Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com> +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 5865347..7b615fa 100644 --- a/benchmark/benchmark.js +++ b/benchmark/benchmark.js @@ -106,7 +106,7 @@ bench( pkg+'::set:p', function benchmark( b ) { } } b.toc(); - if ( isnan( y ) ) { + if ( isnan( dist.p ) ) { b.fail( 'should not return NaN' ); } b.pass( 'benchmark finished' );