Skip to content

Commit 8e2d88c

Browse files
committed
Auto-generated commit
1 parent 373ebd5 commit 8e2d88c

5 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2025-12-09)
7+
## Unreleased (2025-12-13)
88

99
<section class="features">
1010

@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`e7292ba`](https://github.com/stdlib-js/stdlib/commit/e7292bab3952c64edf9b66f89a8a2d803f0fbaf8) - **bench:** refactor to use string interpolation in `array/base/take` [(#9026)](https://github.com/stdlib-js/stdlib/pull/9026) _(by DivitJain26, Philipp Burckhardt)_
260261
- [`3138d95`](https://github.com/stdlib-js/stdlib/commit/3138d952a5f61a9f145424e7a4611e9727d8ab49) - **bench:** refactor to use string interpolation in `array/base/filled-by` [(#8901)](https://github.com/stdlib-js/stdlib/pull/8901) _(by Rohit R Bhat)_
261262
- [`c377b56`](https://github.com/stdlib-js/stdlib/commit/c377b5679b136519dda29dd875dc4465693957e3) - **bench:** refactor to use string interpolation in `array/base/filled2d` [(#8902)](https://github.com/stdlib-js/stdlib/pull/8902) _(by Rohit R Bhat, Philipp Burckhardt)_
262263
- [`4e547d4`](https://github.com/stdlib-js/stdlib/commit/4e547d4b67f772a0950a4f2c6b1744620c827667) - **bench:** refactor to use string interpolation in `array/base/cusome-by` [(#8903)](https://github.com/stdlib-js/stdlib/pull/8903) _(by Aman Singh)_
@@ -681,7 +682,7 @@ A total of 33 issues were closed in this release:
681682

682683
### Contributors
683684

684-
A total of 27 people contributed to this release. Thank you to the following contributors:
685+
A total of 28 people contributed to this release. Thank you to the following contributors:
685686

686687
- Aayush Khanna
687688
- Abhijit Raut
@@ -691,6 +692,7 @@ A total of 27 people contributed to this release. Thank you to the following con
691692
- Anshu Kumar
692693
- Aryan kumar
693694
- Athan Reines
695+
- DivitJain26
694696
- Divyanshu
695697
- Geo Daoyu
696698
- Gururaj Gurram

README.md

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

310310
---
311311

312+
## License
313+
314+
See [LICENSE][stdlib-license].
315+
316+
312317
## Copyright
313318

314319
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -355,6 +360,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
355360
[esm-readme]: https://github.com/stdlib-js/array/blob/esm/README.md
356361
[branches-url]: https://github.com/stdlib-js/array/blob/main/branches.md
357362

363+
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array/main/LICENSE
364+
358365
<!-- <toc-links> -->
359366

360367
[@stdlib/array/base]: https://github.com/stdlib-js/array/tree/main/base

base/take/benchmark/benchmark.assign.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2626
var zeros = require( './../../../zeros' );
2727
var isArray = require( '@stdlib/assert/is-array' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var take = require( './../lib' );
3031

@@ -99,7 +100,7 @@ function main() {
99100
for ( i = min; i <= max; i++ ) {
100101
len = pow( 10, i );
101102
f = createBenchmark( len );
102-
bench( pkg+':assign:len='+len, f );
103+
bench( format( '%s:assign:len=%d', pkg, len ), f);
103104
}
104105
}
105106

base/take/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench' );
2424
var isArray = require( '@stdlib/assert/is-array' );
2525
var zeroTo = require( './../../../base/zero-to' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var take = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+'::copy:len=100', function benchmark( b ) {
33+
bench( format( '%s::copy:len=%d', pkg, 100 ), function benchmark( b ) {
3334
var x;
3435
var i;
3536
var v;

base/take/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2626
var isArray = require( '@stdlib/assert/is-array' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var take = require( './../lib' );
2930

@@ -91,7 +92,7 @@ function main() {
9192
for ( i = min; i <= max; i++ ) {
9293
len = pow( 10, i );
9394
f = createBenchmark( len );
94-
bench( pkg+':len='+len, f );
95+
bench( format( '%s:len=%d', pkg, len ), f );
9596
}
9697
}
9798

0 commit comments

Comments
 (0)