Skip to content

Commit 06684e6

Browse files
committed
Auto-generated commit
1 parent cd6f40e commit 06684e6

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

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

257257
<details>
258258

259+
- [`e7054b7`](https://github.com/stdlib-js/stdlib/commit/e7054b7e99fbf83588f207bc7f7fd4d713ba93c1) - **bench:** refactor to use string interpolation in `array/base/any` [(#8649)](https://github.com/stdlib-js/stdlib/pull/8649) _(by Aman Singh)_
259260
- [`3c1ebd1`](https://github.com/stdlib-js/stdlib/commit/3c1ebd167342711cdb0ed712c9591a8033aa8497) - **docs:** improve doctests for complex number instances in `array/base/accessor-setter` [(#8645)](https://github.com/stdlib-js/stdlib/pull/8645) _(by Divyanshu)_
260261
- [`b4bc4a9`](https://github.com/stdlib-js/stdlib/commit/b4bc4a97a705a981e343345f4c2b0d5aee7104ff) - **docs:** improve doctests for complex number instances in `array/base/accessor-getter` [(#8644)](https://github.com/stdlib-js/stdlib/pull/8644) _(by Divyanshu)_
261262
- [`322eefc`](https://github.com/stdlib-js/stdlib/commit/322eefcff2e0d83f4e302c02bd57cee2a442b8f0) - **docs:** fix interface name in `array/base/one-to` TypeScript declarations _(by Philipp Burckhardt)_
@@ -619,12 +620,13 @@ A total of 33 issues were closed in this release:
619620

620621
### Contributors
621622

622-
A total of 20 people contributed to this release. Thank you to the following contributors:
623+
A total of 21 people contributed to this release. Thank you to the following contributors:
623624

624625
- Aayush Khanna
625626
- Abhijit Raut
626627
- Aditya Sapra
627628
- Ahmed Kashkoush
629+
- Aman Singh
628630
- Anshu Kumar
629631
- Athan Reines
630632
- Divyanshu

base/any/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
2626
var zeros = require( './../../../base/zeros' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var any = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)