Skip to content

Commit 24103bd

Browse files
committed
Auto-generated commit
1 parent 460181d commit 24103bd

File tree

4 files changed

+43
-7
lines changed

4 files changed

+43
-7
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+
- [`bdd38d9`](https://github.com/stdlib-js/stdlib/commit/bdd38d971f4c0a24d43aca632ca5098cc0b90332) - **bench:** refactor to use string interpolation in `stats/base/dists/levy` [(#10444)](https://github.com/stdlib-js/stdlib/pull/10444) _(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
@@ -328,8 +328,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
328328
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-levy-logcdf.svg
329329
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-levy-logcdf
330330

331-
[test-image]: https://github.com/stdlib-js/stats-base-dists-levy-logcdf/actions/workflows/test.yml/badge.svg?branch=v0.3.1
332-
[test-url]: https://github.com/stdlib-js/stats-base-dists-levy-logcdf/actions/workflows/test.yml?query=branch:v0.3.1
331+
[test-image]: https://github.com/stdlib-js/stats-base-dists-levy-logcdf/actions/workflows/test.yml/badge.svg?branch=main
332+
[test-url]: https://github.com/stdlib-js/stats-base-dists-levy-logcdf/actions/workflows/test.yml?query=branch:main
333333

334334
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-levy-logcdf/main.svg
335335
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-levy-logcdf?branch=main

benchmark/benchmark.js

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

@@ -64,7 +65,7 @@ bench( pkg, function benchmark( b ) {
6465
b.end();
6566
});
6667

67-
bench( pkg+':factory', function benchmark( b ) {
68+
bench( format( '%s:factory', pkg ), function benchmark( b ) {
6869
var mylogcdf;
6970
var scale;
7071
var len;

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@stdlib/constants-float64-ninf": "^0.2.3",
4444
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4545
"@stdlib/math-base-napi-ternary": "^0.3.2",
46-
"@stdlib/math-base-special-erfc": "^0.2.4",
46+
"@stdlib/math-base-special-erfc": "^0.2.5",
4747
"@stdlib/math-base-special-ln": "^0.2.5",
4848
"@stdlib/math-base-special-sqrt": "^0.2.3",
4949
"@stdlib/utils-constant-function": "^0.2.3",
@@ -55,13 +55,14 @@
5555
"@stdlib/constants-float64-eps": "^0.2.3",
5656
"@stdlib/constants-float64-pinf": "^0.2.3",
5757
"@stdlib/math-base-special-abs": "^0.2.3",
58-
"@stdlib/random-base-randu": "^0.2.2",
59-
"@stdlib/random-base-uniform": "^0.2.2",
58+
"@stdlib/random-base-randu": "^0.2.3",
59+
"@stdlib/random-base-uniform": "^0.2.3",
60+
"@stdlib/string-format": "^0.2.3",
6061
"@stdlib/utils-try-require": "^0.2.3",
6162
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6263
"istanbul": "^0.4.1",
6364
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
64-
"@stdlib/bench-harness": "^0.2.2"
65+
"@stdlib/bench-harness": "^0.2.3"
6566
},
6667
"engines": {
6768
"node": ">=0.10.0",

0 commit comments

Comments
 (0)