Skip to content

Commit c523efc

Browse files
committed
Auto-generated commit
1 parent 987658d commit c523efc

7 files changed

Lines changed: 173 additions & 15 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-02-07)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`1eee288`](https://github.com/stdlib-js/stdlib/commit/1eee288269d47dffe3b59766b0bb846089ad2b42) - **bench:** refactor to use string interpolation in `math/base/assert` [(#10133)](https://github.com/stdlib-js/stdlib/pull/10133) _(by Lokesh Ranjan)_
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+
- Lokesh Ranjan
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.1">
640

741
## 0.1.1 (2026-02-04)

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,6 @@ For more information on the project, filing bug reports and feature requests, an
263263

264264
---
265265

266-
## License
267-
268-
See [LICENSE][stdlib-license].
269-
270-
271266
## Copyright
272267

273268
Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
@@ -283,8 +278,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
283278
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-assert-is-nonnegative-integerf.svg
284279
[npm-url]: https://npmjs.org/package/@stdlib/math-base-assert-is-nonnegative-integerf
285280

286-
[test-image]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/actions/workflows/test.yml/badge.svg?branch=v0.1.1
287-
[test-url]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/actions/workflows/test.yml?query=branch:v0.1.1
281+
[test-image]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/actions/workflows/test.yml/badge.svg?branch=main
282+
[test-url]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/actions/workflows/test.yml?query=branch:main
288283

289284
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-assert-is-nonnegative-integerf/main.svg
290285
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-assert-is-nonnegative-integerf?branch=main
@@ -314,8 +309,6 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
314309
[esm-readme]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/blob/esm/README.md
315310
[branches-url]: https://github.com/stdlib-js/math-base-assert-is-nonnegative-integerf/blob/main/branches.md
316311

317-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-assert-is-nonnegative-integerf/main/LICENSE
318-
319312
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
320313

321314
<!-- <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 discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
2626
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
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 opts;
4344
var x;
4445
var y;

dist/index.js

Lines changed: 29 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: 53 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: 51 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,13 @@
4545
},
4646
"devDependencies": {
4747
"@stdlib/assert-is-boolean": "^0.2.2",
48-
"@stdlib/boolean-ctor": "^0.2.2",
48+
"@stdlib/boolean-ctor": "^0.2.3",
4949
"@stdlib/constants-float32-ninf": "^0.2.2",
5050
"@stdlib/constants-float32-pinf": "^0.2.2",
5151
"@stdlib/math-base-special-truncf": "^0.2.3",
5252
"@stdlib/random-array-discrete-uniform": "^0.2.1",
5353
"@stdlib/random-base-randu": "^0.2.2",
54+
"@stdlib/string-format": "^0.2.3",
5455
"@stdlib/utils-try-require": "^0.2.2",
5556
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5657
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)