Skip to content

Commit 5907aa5

Browse files
committed
Auto-generated commit
1 parent 1ccfeb0 commit 5907aa5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-05)
7+
## Unreleased (2026-03-06)
88

99
<section class="features">
1010

@@ -723,6 +723,7 @@ A total of 87 issues were closed in this release:
723723

724724
<details>
725725

726+
- [`6f7ee58`](https://github.com/stdlib-js/stdlib/commit/6f7ee58852bbba14f20d0ef3f0e6855cd7e5ab1b) - **bench:** use string interpolation in `math/base/special/abs` [(#10734)](https://github.com/stdlib-js/stdlib/pull/10734) _(by travisBREAKS)_
726727
- [`8145443`](https://github.com/stdlib-js/stdlib/commit/8145443dd757751d025b175d64e425244cddb97f) - **docs:** update `math/base/special` TypeScript declarations [(#10711)](https://github.com/stdlib-js/stdlib/pull/10711) _(by stdlib-bot)_
727728
- [`a24740a`](https://github.com/stdlib-js/stdlib/commit/a24740a8441afceaef4ec4f0956fdb32b66c2f36) - **chore:** fix EditorConfig lint errors [(#10695)](https://github.com/stdlib-js/stdlib/pull/10695) _(by Partha Das)_
728729
- [`2727b51`](https://github.com/stdlib-js/stdlib/commit/2727b5129ea9956b5e0caf989654454912fe9d24) - **docs:** improve doctests for complex number instances in `math/base/special/croundf` [(#10510)](https://github.com/stdlib-js/stdlib/pull/10510) _(by AyushiJain18270, Philipp Burckhardt)_
@@ -1948,7 +1949,7 @@ A total of 87 issues were closed in this release:
19481949

19491950
### Contributors
19501951

1951-
A total of 73 people contributed to this release. Thank you to the following contributors:
1952+
A total of 74 people contributed to this release. Thank you to the following contributors:
19521953

19531954
- Aayush Khanna
19541955
- Aman Singh
@@ -2023,6 +2024,7 @@ A total of 73 people contributed to this release. Thank you to the following con
20232024
- kaushal-kumar-it
20242025
- kshitijgarg2811-oss
20252026
- nnyouung
2027+
- travisBREAKS
20262028

20272029
</section>
20282030

base/special/abs/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( './../../../../base/assert/is-nan' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var abs = require( './../lib' );
2829

@@ -53,7 +54,7 @@ bench( pkg, function benchmark( b ) {
5354
b.end();
5455
});
5556

56-
bench( pkg+'::built-in', function benchmark( b ) {
57+
bench( format( '%s::built-in', pkg ), function benchmark( b ) {
5758
var x;
5859
var y;
5960
var i;

base/special/abs/benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var bench = require( '@stdlib/bench' );
2525
var uniform = require( '@stdlib/random/array/uniform' );
2626
var isnan = require( './../../../../base/assert/is-nan' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930

3031

@@ -38,7 +39,7 @@ var opts = {
3839

3940
// MAIN //
4041

41-
bench( pkg+'::native', opts, function benchmark( b ) {
42+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4243
var x;
4344
var y;
4445
var i;

0 commit comments

Comments
 (0)