Skip to content

Commit bb72e29

Browse files
committed
Auto-generated commit
1 parent 66aa416 commit bb72e29

4 files changed

Lines changed: 43 additions & 7 deletions

File tree

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-03-04)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`675c404`](https://github.com/stdlib-js/stdlib/commit/675c404341e210a6ff4d37477bbc3f79e927fd8d) - **bench:** refactor to use string interpolation in `stats/base/dists/binomial` [(#10176)](https://github.com/stdlib-js/stdlib/pull/10176) _(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.2.3">
640

741
## 0.2.3 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
228228
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-binomial-logpmf.svg
229229
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-binomial-logpmf
230230

231-
[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-logpmf/actions/workflows/test.yml/badge.svg?branch=v0.2.3
232-
[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-logpmf/actions/workflows/test.yml?query=branch:v0.2.3
231+
[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-logpmf/actions/workflows/test.yml/badge.svg?branch=main
232+
[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-logpmf/actions/workflows/test.yml?query=branch:main
233233

234234
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-binomial-logpmf/main.svg
235235
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-binomial-logpmf?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 discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var logpmf = 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 mypmf;
6566
var opts;
6667
var n;

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,20 @@
4141
"@stdlib/constants-float64-pinf": "^0.2.3",
4242
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4343
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.2",
44-
"@stdlib/math-base-special-binomcoefln": "^0.3.0",
44+
"@stdlib/math-base-special-binomcoefln": "^0.3.1",
4545
"@stdlib/math-base-special-ln": "^0.2.5",
4646
"@stdlib/math-base-special-log1p": "^0.2.4",
4747
"@stdlib/stats-base-dists-degenerate-logpmf": "^0.3.2",
4848
"@stdlib/utils-constant-function": "^0.2.3",
4949
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3"
5050
},
5151
"devDependencies": {
52-
"@stdlib/console-log-each-map": "^0.1.0",
52+
"@stdlib/console-log-each-map": "^0.1.1",
5353
"@stdlib/constants-float64-eps": "^0.2.3",
5454
"@stdlib/math-base-special-abs": "^0.2.3",
55-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
56-
"@stdlib/random-array-uniform": "^0.2.1",
55+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
56+
"@stdlib/random-array-uniform": "^0.2.2",
57+
"@stdlib/string-format": "^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",

0 commit comments

Comments
 (0)