Skip to content

Commit 818977e

Browse files
committed
Auto-generated commit
1 parent 1c2db0a commit 818977e

8 files changed

Lines changed: 173 additions & 15 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-14)
7+
## Unreleased (2026-04-21)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`59c9969`](https://github.com/stdlib-js/stdlib/commit/59c9969a580e74428505ba91634607f110ec71bf) - **bench:** refactor to use string interpolation in `math/base/special` [(#11388)](https://github.com/stdlib-js/stdlib/pull/11388) _(by Karan Anand)_
1516
- [`e81a8c0`](https://github.com/stdlib-js/stdlib/commit/e81a8c0c8501d4bc3e3b3843a86476a2e088a9d6) - **docs:** fix C examples [(#11134)](https://github.com/stdlib-js/stdlib/pull/11134) _(by anee3)_
1617

1718
</details>
@@ -24,8 +25,9 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

30+
- Karan Anand
2931
- anee3
3032

3133
</section>

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,6 @@ For more information on the project, filing bug reports and feature requests, an
251251

252252
---
253253

254-
## License
255-
256-
See [LICENSE][stdlib-license].
257-
258-
259254
## Copyright
260255

261256
Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
@@ -302,8 +297,6 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
302297
[esm-readme]: https://github.com/stdlib-js/math-base-special-kronecker-deltaf/blob/esm/README.md
303298
[branches-url]: https://github.com/stdlib-js/math-base-special-kronecker-deltaf/blob/main/branches.md
304299

305-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special-kronecker-deltaf/main/LICENSE
306-
307300
[kronecker-delta]: https://en.wikipedia.org/wiki/Kronecker_delta
308301

309302
<!-- <related-links> -->

benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var bench = require( '@stdlib/bench-harness' );
2525
var randu = require( '@stdlib/random-base-randu' );
2626
var isnanf = require( '@stdlib/math-base-assert-is-nanf' );
2727
var tryRequire = require( '@stdlib/utils-try-require' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930

3031

@@ -38,7 +39,7 @@ var opts = {
3839

3940
// MAIN //
4041

41-
bench( pkg+'::native', opts, function benchmark( b ) {
42+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4243
var x;
4344
var y;
4445
var i;

dist/index.js

Lines changed: 35 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js

Lines changed: 68 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native.js

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"@stdlib/math-base-assert-is-positive-zerof": "^0.1.4",
5353
"@stdlib/random-array-uniform": "^0.2.2",
5454
"@stdlib/random-base-randu": "^0.2.3",
55+
"@stdlib/string-format": "^0.2.3",
5556
"@stdlib/utils-try-require": "^0.2.3",
5657
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5758
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)