Skip to content

Commit 5a4e474

Browse files
committed
Auto-generated commit
1 parent c16eb7b commit 5a4e474

7 files changed

Lines changed: 54 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-15)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`ea860cb`](https://github.com/stdlib-js/stdlib/commit/ea860cb837689aeec224d0f0e4f71054bc5b309d) - **bench:** refactor to use string interpolation in `blas/base/dcopy` [(#10260)](https://github.com/stdlib-js/stdlib/pull/10260) _(by Bhargav Dabhade)_
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+
- Bhargav Dabhade
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.4.1">
640

741
## 0.4.1 (2026-02-07)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
380380
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-base-dcopy.svg
381381
[npm-url]: https://npmjs.org/package/@stdlib/blas-base-dcopy
382382
383-
[test-image]: https://github.com/stdlib-js/blas-base-dcopy/actions/workflows/test.yml/badge.svg?branch=v0.4.1
384-
[test-url]: https://github.com/stdlib-js/blas-base-dcopy/actions/workflows/test.yml?query=branch:v0.4.1
383+
[test-image]: https://github.com/stdlib-js/blas-base-dcopy/actions/workflows/test.yml/badge.svg?branch=main
384+
[test-url]: https://github.com/stdlib-js/blas-base-dcopy/actions/workflows/test.yml?query=branch:main
385385
386386
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-base-dcopy/main.svg
387387
[coverage-url]: https://codecov.io/github/stdlib-js/blas-base-dcopy?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 isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var dcopy = require( './../lib/dcopy.js' );
2930

@@ -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+':len='+len, f );
103+
bench( format( '%s:len=%d', pkg, len ), f );
103104
}
104105
}
105106

benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var uniform = require( '@stdlib/random-array-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var tryRequire = require( '@stdlib/utils-try-require' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031

3132

@@ -104,7 +105,7 @@ function main() {
104105
for ( i = min; i <= max; i++ ) {
105106
len = pow( 10, i );
106107
f = createBenchmark( len );
107-
bench( pkg+'::native:len='+len, opts, f );
108+
bench( format( '%s::native:len=%d', pkg, len ), opts, f );
108109
}
109110
}
110111

benchmark/benchmark.ndarray.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 isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var dcopy = require( './../lib/ndarray.js' );
2930

@@ -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+':ndarray:len='+len, f );
103+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
103104
}
104105
}
105106

benchmark/benchmark.ndarray.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var uniform = require( '@stdlib/random-array-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var tryRequire = require( '@stdlib/utils-try-require' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031

3132

@@ -104,7 +105,7 @@ function main() {
104105
for ( i = min; i <= max; i++ ) {
105106
len = pow( 10, i );
106107
f = createBenchmark( len );
107-
bench( pkg+'::native:ndarray:len='+len, opts, f );
108+
bench( format( '%s::native:ndarray:len=%d', pkg, len ), opts, f );
108109
}
109110
}
110111

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"url": "https://github.com/stdlib-js/stdlib/issues"
4242
},
4343
"dependencies": {
44-
"@stdlib/assert-is-error": "^0.2.2",
44+
"@stdlib/assert-is-error": "^0.2.3",
4545
"@stdlib/blas-base-shared": "^0.2.1",
4646
"@stdlib/napi-argv": "^0.2.3",
4747
"@stdlib/napi-argv-int64": "^0.2.3",
@@ -50,21 +50,22 @@
5050
"@stdlib/strided-base-min-view-buffer-index": "^0.3.1",
5151
"@stdlib/strided-base-stride2offset": "^0.1.1",
5252
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
53-
"@stdlib/utils-library-manifest": "^0.2.3",
54-
"@stdlib/utils-try-require": "^0.2.2"
53+
"@stdlib/utils-library-manifest": "^0.2.4",
54+
"@stdlib/utils-try-require": "^0.2.3"
5555
},
5656
"devDependencies": {
57-
"@stdlib/array-float64": "^0.2.2",
58-
"@stdlib/assert-is-browser": "^0.2.2",
57+
"@stdlib/array-float64": "^0.2.3",
58+
"@stdlib/assert-is-browser": "^0.2.3",
5959
"@stdlib/math-base-assert-is-nan": "^0.2.3",
60-
"@stdlib/math-base-special-pow": "^0.3.0",
61-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
62-
"@stdlib/random-array-uniform": "^0.2.1",
60+
"@stdlib/math-base-special-pow": "^0.3.1",
61+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
62+
"@stdlib/random-array-uniform": "^0.2.2",
63+
"@stdlib/string-format": "^0.2.3",
6364
"proxyquire": "^2.0.0",
6465
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6566
"istanbul": "^0.4.1",
6667
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
67-
"@stdlib/bench-harness": "^0.2.2"
68+
"@stdlib/bench-harness": "^0.2.3"
6869
},
6970
"engines": {
7071
"node": ">=0.10.0",

0 commit comments

Comments
 (0)