Skip to content

Commit f55f2b0

Browse files
committed
Auto-generated commit
1 parent 0bf140e commit f55f2b0

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-02-16)
7+
## Unreleased (2026-03-04)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`675c404`](https://github.com/stdlib-js/stdlib/commit/675c404341e210a6ff4d37477bbc3f79e927fd8d) - **bench:** refactor to use string interpolation in `stats/base/dists/binomial` [(#10176)](https://github.com/stdlib-js/stdlib/pull/10176) _(by Vishal Gaikwad)_
1516
- [`f38e8a7`](https://github.com/stdlib-js/stdlib/commit/f38e8a7b433e0e9888eb57c83f4374073089ad85) - **docs:** clean-up parameters in Julia fixtures scripts _(by Philipp Burckhardt)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Philipp Burckhardt
31+
- Vishal Gaikwad
3032

3133
</section>
3234

benchmark/benchmark.native.js

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

3132

@@ -39,7 +40,7 @@ var opts = {
3940

4041
// MAIN //
4142

42-
bench( pkg+'::native', opts, function benchmark( b ) {
43+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4344
var opts;
4445
var n;
4546
var p;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"@stdlib/math-base-special-ceil": "^0.2.3",
5555
"@stdlib/random-array-discrete-uniform": "^0.2.2",
5656
"@stdlib/random-array-uniform": "^0.2.2",
57+
"@stdlib/string-format": "^0.2.3",
5758
"@stdlib/utils-try-require": "^0.2.3",
5859
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5960
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)