Skip to content

Commit 7fd9983

Browse files
committed
Auto-generated commit
1 parent cd795f9 commit 7fd9983

File tree

4 files changed

+44
-8
lines changed

4 files changed

+44
-8
lines changed

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)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
313313
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-laplace-entropy.svg
314314
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-laplace-entropy
315315

316-
[test-image]: https://github.com/stdlib-js/stats-base-dists-laplace-entropy/actions/workflows/test.yml/badge.svg?branch=v0.3.1
317-
[test-url]: https://github.com/stdlib-js/stats-base-dists-laplace-entropy/actions/workflows/test.yml?query=branch:v0.3.1
316+
[test-image]: https://github.com/stdlib-js/stats-base-dists-laplace-entropy/actions/workflows/test.yml/badge.svg?branch=main
317+
[test-url]: https://github.com/stdlib-js/stats-base-dists-laplace-entropy/actions/workflows/test.yml?query=branch:main
318318

319319
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-laplace-entropy/main.svg
320320
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-laplace-entropy?branch=main

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: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,22 @@
4343
"@stdlib/constants-float64-e": "^0.2.3",
4444
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4545
"@stdlib/math-base-napi-binary": "^0.3.3",
46-
"@stdlib/math-base-special-ln": "^0.2.4",
47-
"@stdlib/utils-library-manifest": "^0.2.3"
46+
"@stdlib/math-base-special-ln": "^0.2.5",
47+
"@stdlib/utils-library-manifest": "^0.2.4"
4848
},
4949
"devDependencies": {
50-
"@stdlib/console-log-each-map": "^0.1.0",
50+
"@stdlib/console-log-each-map": "^0.1.1",
5151
"@stdlib/constants-float64-eps": "^0.2.3",
5252
"@stdlib/constants-float64-ninf": "^0.2.3",
5353
"@stdlib/constants-float64-pinf": "^0.2.3",
5454
"@stdlib/math-base-special-abs": "^0.2.3",
55-
"@stdlib/random-array-uniform": "^0.2.1",
55+
"@stdlib/random-array-uniform": "^0.2.2",
56+
"@stdlib/string-format": "^0.2.3",
5657
"@stdlib/utils-try-require": "^0.2.3",
5758
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5859
"istanbul": "^0.4.1",
5960
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
60-
"@stdlib/bench-harness": "^0.2.2"
61+
"@stdlib/bench-harness": "^0.2.3"
6162
},
6263
"engines": {
6364
"node": ">=0.10.0",

0 commit comments

Comments
 (0)