Skip to content

Commit dcd8638

Browse files
committed
Auto-generated commit
1 parent a3af360 commit dcd8638

2 files changed

Lines changed: 5 additions & 3 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-06-01)
7+
## Unreleased (2025-06-02)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`c705a94`](https://github.com/stdlib-js/stdlib/commit/c705a94eb25e0783437c29a1a9bdb6a41fb09207) - **style:** add missing space [(#7173)](https://github.com/stdlib-js/stdlib/pull/7173) _(by Shabareesh Shetty)_
2526
- [`5c8faed`](https://github.com/stdlib-js/stdlib/commit/5c8faed8016941ff5a337bb4d14b1bdb65748993) - **docs:** update example _(by Athan Reines)_
2627
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_
2728
- [`3f8a327`](https://github.com/stdlib-js/stdlib/commit/3f8a327f98267690ae7d101c84e522810986caf0) - **bench:** fix syntax _(by Athan Reines)_
@@ -38,10 +39,11 @@
3839

3940
### Contributors
4041

41-
A total of 2 people contributed to this release. Thank you to the following contributors:
42+
A total of 3 people contributed to this release. Thank you to the following contributors:
4243

4344
- Athan Reines
4445
- Karan Anand
46+
- Shabareesh Shetty
4547

4648
</section>
4749

benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static double benchmark( void ) {
105105
for ( i = 0; i < ITERATIONS; i++ ) {
106106
re = ( 1000.0*rand_double() ) - 500.0;
107107
im = ( 1000.0*rand_double() ) - 500.0;
108-
z1 =stdlib_complex128( re, im );
108+
z1 = stdlib_complex128( re, im );
109109

110110
z2 = stdlib_base_complex128_scale( 5.0, z1 );
111111
stdlib_complex128_reim( z2, &re, &im );

0 commit comments

Comments
 (0)