Skip to content

Commit 6c47836

Browse files
committed
Auto-generated commit
1 parent 0498a9a commit 6c47836

File tree

5 files changed

+46
-9
lines changed

5 files changed

+46
-9
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
@@ -319,8 +319,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
319319
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-laplace-quantile.svg
320320
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-laplace-quantile
321321

322-
[test-image]: https://github.com/stdlib-js/stats-base-dists-laplace-quantile/actions/workflows/test.yml/badge.svg?branch=v0.3.1
323-
[test-url]: https://github.com/stdlib-js/stats-base-dists-laplace-quantile/actions/workflows/test.yml?query=branch:v0.3.1
322+
[test-image]: https://github.com/stdlib-js/stats-base-dists-laplace-quantile/actions/workflows/test.yml/badge.svg?branch=main
323+
[test-url]: https://github.com/stdlib-js/stats-base-dists-laplace-quantile/actions/workflows/test.yml?query=branch:main
324324

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

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 quantile = 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 myquantile;
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: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,23 +43,24 @@
4343
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4444
"@stdlib/math-base-napi-ternary": "^0.3.2",
4545
"@stdlib/math-base-special-abs": "^0.2.3",
46-
"@stdlib/math-base-special-ln": "^0.2.4",
46+
"@stdlib/math-base-special-ln": "^0.2.5",
4747
"@stdlib/math-base-special-signum": "^0.2.3",
4848
"@stdlib/utils-constant-function": "^0.2.3",
4949
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
50-
"@stdlib/utils-library-manifest": "^0.2.3"
50+
"@stdlib/utils-library-manifest": "^0.2.4"
5151
},
5252
"devDependencies": {
53-
"@stdlib/console-log-each-map": "^0.1.0",
53+
"@stdlib/console-log-each-map": "^0.1.1",
5454
"@stdlib/constants-float64-eps": "^0.2.3",
5555
"@stdlib/constants-float64-ninf": "^0.2.3",
5656
"@stdlib/constants-float64-pinf": "^0.2.3",
57-
"@stdlib/random-array-uniform": "^0.2.1",
57+
"@stdlib/random-array-uniform": "^0.2.2",
58+
"@stdlib/string-format": "^0.2.3",
5859
"@stdlib/utils-try-require": "^0.2.3",
5960
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6061
"istanbul": "^0.4.1",
6162
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
62-
"@stdlib/bench-harness": "^0.2.2"
63+
"@stdlib/bench-harness": "^0.2.3"
6364
},
6465
"engines": {
6566
"node": ">=0.10.0",

0 commit comments

Comments
 (0)