Skip to content

Commit 5dc636b

Browse files
committed
Auto-generated commit
1 parent 585f023 commit 5dc636b

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-06)
7+
## Unreleased (2026-03-07)
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+
- [`a5f1905`](https://github.com/stdlib-js/stdlib/commit/a5f190528adacae01ce743e29bc4e1f91d005947) - **bench:** use string interpolation in `math/base/special/floor` [(#10736)](https://github.com/stdlib-js/stdlib/pull/10736) _(by travisBREAKS, Egger)_
726727
- [`f838879`](https://github.com/stdlib-js/stdlib/commit/f83887976cd26ae9bc431233a46777b281bf91e8) - **bench:** use string interpolation in `math/base/special/ceil` [(#10735)](https://github.com/stdlib-js/stdlib/pull/10735) _(by travisBREAKS)_
727728
- [`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)_
728729
- [`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)_
@@ -1950,7 +1951,7 @@ A total of 87 issues were closed in this release:
19501951

19511952
### Contributors
19521953

1953-
A total of 74 people contributed to this release. Thank you to the following contributors:
1954+
A total of 75 people contributed to this release. Thank you to the following contributors:
19541955

19551956
- Aayush Khanna
19561957
- Aman Singh
@@ -1968,6 +1969,7 @@ A total of 74 people contributed to this release. Thank you to the following con
19681969
- Ditsu S
19691970
- DivitJain26
19701971
- Divyanshu
1972+
- Egger
19711973
- Gaurav Kaushik
19721974
- Gautam Kaushik
19731975
- Gautam sharma

base/special/floor/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 floor = require( './../lib' );
2829

@@ -51,7 +52,7 @@ bench( pkg, function benchmark( b ) {
5152
b.end();
5253
});
5354

54-
bench( pkg+'::built-in', function benchmark( b ) {
55+
bench( format( '%s::built-in', pkg ), function benchmark( b ) {
5556
var x;
5657
var y;
5758
var i;

base/special/floor/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)