Skip to content

Commit ef063e8

Browse files
committed
Auto-generated commit
1 parent bfb15f2 commit ef063e8

6 files changed

Lines changed: 48 additions & 17 deletions

File tree

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,6 @@ jobs:
7676
npm install || npm install || npm install
7777
timeout-minutes: 15
7878

79-
# Build native add-on if present:
80-
- name: 'Build native add-on (if present)'
81-
run: |
82-
if [ -f "binding.gyp" ]; then
83-
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
84-
fi
85-
8679
# Run tests:
8780
- name: 'Run tests'
8881
id: tests

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-05)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`baaed47`](https://github.com/stdlib-js/stdlib/commit/baaed472c168e6b26437cf48137cdf79c3fd544b) - **bench:** refractor to use string interpolation in `stats/base/dists/triangular` [(#10063)](https://github.com/stdlib-js/stdlib/pull/10063) _(by Shubham, 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+
- Shubham
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.3.0">
641

742
## 0.3.0 (2026-01-30)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
353353
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-triangular-mgf.svg
354354
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-triangular-mgf
355355

356-
[test-image]: https://github.com/stdlib-js/stats-base-dists-triangular-mgf/actions/workflows/test.yml/badge.svg?branch=v0.3.0
357-
[test-url]: https://github.com/stdlib-js/stats-base-dists-triangular-mgf/actions/workflows/test.yml?query=branch:v0.3.0
356+
[test-image]: https://github.com/stdlib-js/stats-base-dists-triangular-mgf/actions/workflows/test.yml/badge.svg?branch=main
357+
[test-url]: https://github.com/stdlib-js/stats-base-dists-triangular-mgf/actions/workflows/test.yml?query=branch:main
358358

359359
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-triangular-mgf/main.svg
360360
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-triangular-mgf?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 mgf = require( './../lib' );
3031

@@ -68,7 +69,7 @@ bench( pkg, function benchmark( b ) {
6869
b.end();
6970
});
7071

71-
bench( pkg+':factory', function benchmark( b ) {
72+
bench( format( '%s::factory', pkg ), function benchmark( b ) {
7273
var mymgf;
7374
var mode;
7475
var min;

benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var uniform = require( '@stdlib/random-base-uniform' );
2727
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2828
var tryRequire = require( '@stdlib/utils-try-require' );
2929
var EPS = require( '@stdlib/constants-float64-eps' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132

3233

@@ -40,7 +41,7 @@ var opts = {
4041

4142
// MAIN //
4243

43-
bench( pkg+'::native', opts, function benchmark( b ) {
44+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4445
var mode;
4546
var min;
4647
var max;

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,22 @@
4141
},
4242
"dependencies": {
4343
"@stdlib/math-base-assert-is-nan": "^0.2.2",
44-
"@stdlib/math-base-napi-quaternary": "^0.2.3",
44+
"@stdlib/math-base-napi-quaternary": "^0.2.4",
4545
"@stdlib/math-base-special-exp": "^0.2.4",
4646
"@stdlib/math-base-special-expm1": "^0.2.3",
47-
"@stdlib/utils-constant-function": "^0.2.2",
48-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
47+
"@stdlib/utils-constant-function": "^0.2.3",
48+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
4949
"@stdlib/utils-library-manifest": "^0.2.3"
5050
},
5151
"devDependencies": {
5252
"@stdlib/array-float64": "^0.2.2",
5353
"@stdlib/constants-float64-eps": "^0.2.2",
5454
"@stdlib/constants-float64-ninf": "^0.2.2",
5555
"@stdlib/constants-float64-pinf": "^0.2.2",
56-
"@stdlib/math-base-special-abs": "^0.2.2",
57-
"@stdlib/random-base-randu": "^0.2.1",
58-
"@stdlib/random-base-uniform": "^0.2.1",
56+
"@stdlib/math-base-special-abs": "^0.2.3",
57+
"@stdlib/random-base-randu": "^0.2.2",
58+
"@stdlib/random-base-uniform": "^0.2.2",
59+
"@stdlib/string-format": "^0.2.3",
5960
"@stdlib/utils-try-require": "^0.2.2",
6061
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6162
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)