Skip to content

Commit 5cf6bd3

Browse files
committed
Auto-generated commit
1 parent 30a5b10 commit 5cf6bd3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ A total of 34 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`676581b`](https://github.com/stdlib-js/stdlib/commit/676581b4f1f4ffbece1ae5234a2e6ef1e8fca9f1) - **bench:** refactor to use string interpolation in `array/cartesian-power` [(#9653)](https://github.com/stdlib-js/stdlib/pull/9653) _(by Diyan)_
263264
- [`bfab153`](https://github.com/stdlib-js/stdlib/commit/bfab1532d8a54a05baac781a2913db458a1e8570) - **bench:** refactor to use string interpolation in `array/base/bifurcate-values-by` [(#9607)](https://github.com/stdlib-js/stdlib/pull/9607) _(by Bhargav Dabhade)_
264265
- [`ff76be4`](https://github.com/stdlib-js/stdlib/commit/ff76be4bd7eb9ced1fc74441b9766d1e5e6d6d31) - **bench:** use string interpolation for benchmark names [(#9517)](https://github.com/stdlib-js/stdlib/pull/9517) _(by KovidhRaj)_
265266
- [`b0c05c9`](https://github.com/stdlib-js/stdlib/commit/b0c05c934c6654a95eee523ed88fb34e12fd552b) - **chore:** fix JavaScript lint errors [(#9546)](https://github.com/stdlib-js/stdlib/pull/9546) _(by DivitJain26)_
@@ -712,7 +713,7 @@ A total of 34 issues were closed in this release:
712713

713714
### Contributors
714715

715-
A total of 33 people contributed to this release. Thank you to the following contributors:
716+
A total of 34 people contributed to this release. Thank you to the following contributors:
716717

717718
- Aayush Khanna
718719
- Abhijit Raut
@@ -725,6 +726,7 @@ A total of 33 people contributed to this release. Thank you to the following con
725726
- Bhargav Dabhade
726727
- DivitJain26
727728
- Divyanshu
729+
- Diyan
728730
- Geo Daoyu
729731
- Gururaj Gurram
730732
- Jay Soni

cartesian-power/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench' );
2424
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2525
var zeroTo = require( './../../zero-to' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var cartesianPower = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+':exponent=2,len=100', function benchmark( b ) {
33+
bench( format( '%s:exponent=2,len=100', pkg ), function benchmark( b ) {
3334
var x;
3435
var i;
3536
var v;

0 commit comments

Comments
 (0)