Skip to content

Commit 5da0016

Browse files
committed
Auto-generated commit
1 parent d99b746 commit 5da0016

4 files changed

Lines changed: 10 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-02)
7+
## Unreleased (2025-12-15)
88

99
<section class="features">
1010

@@ -100,6 +100,7 @@ A total of 6 issues were closed in this release:
100100

101101
<details>
102102

103+
- [`1466cce`](https://github.com/stdlib-js/stdlib/commit/1466cce297fd5071f8e9344dfc8832afebb47cdd) - **bench:** refactor to use string interpolation in `complex/float64/base/add` [(#8940)](https://github.com/stdlib-js/stdlib/pull/8940) _(by Krishna Awasthi)_
103104
- [`92dc7c2`](https://github.com/stdlib-js/stdlib/commit/92dc7c2bea09a0f1d6d12d9048381cc8bcc99fe3) - **docs:** fix TSDoc return annotation values and example code _(by Philipp Burckhardt)_
104105
- [`2b72de4`](https://github.com/stdlib-js/stdlib/commit/2b72de40d93281d9929a0b4d7cf8f567b60ea2f5) - **docs:** improve doctests for complex number instances in `complex/base/cast-return` [(#8664)](https://github.com/stdlib-js/stdlib/pull/8664) _(by Aryan kumar, Athan Reines)_
105106
- [`767edc7`](https://github.com/stdlib-js/stdlib/commit/767edc78af5b5b08f826c95b9dd882415dc556f1) - **docs:** improve doctests in `complex/base/wrap-function` [(#8666)](https://github.com/stdlib-js/stdlib/pull/8666) _(by Aryan kumar, Athan Reines)_
@@ -225,7 +226,7 @@ A total of 6 issues were closed in this release:
225226

226227
### Contributors
227228

228-
A total of 11 people contributed to this release. Thank you to the following contributors:
229+
A total of 12 people contributed to this release. Thank you to the following contributors:
229230

230231
- Aayush Khanna
231232
- Aryan J
@@ -234,6 +235,7 @@ A total of 11 people contributed to this release. Thank you to the following con
234235
- Gunj Joshi
235236
- Gururaj Gurram
236237
- Karan Anand
238+
- Krishna Awasthi
237239
- Lalit Narayan Yadav
238240
- Philipp Burckhardt
239241
- SAHIL KUMAR

float64/base/add/benchmark/benchmark.assign.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 uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var Float64Array = require( '@stdlib/array/float64' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var add = require( './../lib' );
2930

@@ -37,7 +38,7 @@ var options = {
3738

3839
// MAIN //
3940

40-
bench( pkg+':assign', function benchmark( b ) {
41+
bench( format( '%s:assign', pkg ), function benchmark( b ) {
4142
var out;
4243
var re;
4344
var im;

float64/base/add/benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var Complex128 = require( './../../../../float64/ctor' );
2828
var real = require( './../../../../float64/real' );
2929
var imag = require( './../../../../float64/imag' );
3030
var tryRequire = require( '@stdlib/utils/try-require' );
31+
var format = require( '@stdlib/string/format' );
3132
var pkg = require( './../package.json' ).name;
3233

3334

@@ -41,7 +42,7 @@ var opts = {
4142

4243
// MAIN //
4344

44-
bench( pkg+'::native', opts, function benchmark( b ) {
45+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4546
var values;
4647
var out;
4748
var z;

float64/base/add/benchmark/benchmark.strided.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 uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var Float64Array = require( '@stdlib/array/float64' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var add = require( './../lib' );
2930

@@ -37,7 +38,7 @@ var options = {
3738

3839
// MAIN //
3940

40-
bench( pkg+':strided', function benchmark( b ) {
41+
bench( format( '%s:strided', pkg ), function benchmark( b ) {
4142
var out;
4243
var z1;
4344
var z2;

0 commit comments

Comments
 (0)