Skip to content

Commit 401a7a9

Browse files
committed
Auto-generated commit
1 parent a41b469 commit 401a7a9

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-02-24)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`3f8da9f`](https://github.com/stdlib-js/stdlib/commit/3f8da9f06286333269e9065344b495a7d91fffa4) - **bench:** refactor to use string interpolation in `stats/base/dists/laplace` [(#10440)](https://github.com/stdlib-js/stdlib/pull/10440) _(by Vishal Gaikwad)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Vishal Gaikwad
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.3.1">
640

741
## 0.3.1 (2026-02-08)

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var uniform = require( '@stdlib/random-array-uniform' );
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var EPS = require( '@stdlib/constants-float64-eps' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var logcdf = require( './../lib' );
2930

@@ -60,7 +61,7 @@ bench( pkg, function benchmark( b ) {
6061
b.end();
6162
});
6263

63-
bench( pkg+':factory', function benchmark( b ) {
64+
bench( format( '%s:factory', pkg ), function benchmark( b ) {
6465
var mylogcdf;
6566
var scale;
6667
var opts;

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 isnan = require( '@stdlib/math-base-assert-is-nan' );
2828
var EPS = require( '@stdlib/constants-float64-eps' );
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 scale;
4445
var opts;
4546
var mu;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"@stdlib/constants-float64-pinf": "^0.2.3",
5757
"@stdlib/math-base-special-abs": "^0.2.3",
5858
"@stdlib/random-array-uniform": "^0.2.2",
59+
"@stdlib/string-format": "^0.2.3",
5960
"@stdlib/utils-try-require": "^0.2.3",
6061
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6162
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)