Skip to content

Commit 01d54b6

Browse files
committed
Auto-generated commit
1 parent a1d411c commit 01d54b6

3 files changed

Lines changed: 45 additions & 8 deletions

File tree

CHANGELOG.md

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

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

742
## 0.3.1 (2026-02-01)

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-harness' );
2525
var uniform = require( '@stdlib/random-array-uniform' );
2626
var isnan = require( '@stdlib/math-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 opts;
4344
var mu;
4445
var y;

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,19 @@
4040
"url": "https://github.com/stdlib-js/stdlib/issues"
4141
},
4242
"dependencies": {
43-
"@stdlib/math-base-assert-is-nan": "^0.2.2",
44-
"@stdlib/math-base-napi-unary": "^0.2.6",
45-
"@stdlib/utils-library-manifest": "^0.2.3"
43+
"@stdlib/math-base-assert-is-nan": "^0.2.3",
44+
"@stdlib/math-base-napi-unary": "^0.2.7",
45+
"@stdlib/utils-library-manifest": "^0.2.4"
4646
},
4747
"devDependencies": {
48-
"@stdlib/console-log-each-map": "^0.1.0",
49-
"@stdlib/random-array-uniform": "^0.2.1",
50-
"@stdlib/utils-try-require": "^0.2.2",
48+
"@stdlib/console-log-each-map": "^0.1.1",
49+
"@stdlib/random-array-uniform": "^0.2.2",
50+
"@stdlib/string-format": "^0.2.3",
51+
"@stdlib/utils-try-require": "^0.2.3",
5152
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5253
"istanbul": "^0.4.1",
5354
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
54-
"@stdlib/bench-harness": "^0.2.2"
55+
"@stdlib/bench-harness": "^0.2.3"
5556
},
5657
"engines": {
5758
"node": ">=0.10.0",

0 commit comments

Comments
 (0)