Skip to content

Commit a3f9af1

Browse files
committed
Auto-generated commit
1 parent ad65f35 commit a3f9af1

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

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

7-
## Unreleased (2026-05-09)
7+
## Unreleased (2026-05-10)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`32af5b8`](https://github.com/stdlib-js/stdlib/commit/32af5b8558638f4e0a35432fb355affd8bce097d) - **test:** fix `Complex128` import in `array/complex128` [(#12064)](https://github.com/stdlib-js/stdlib/pull/12064) _(by Karan Anand)_
1516
- [`ccec3e4`](https://github.com/stdlib-js/stdlib/commit/ccec3e43076042d67dbaa814e5140c10f1b85b58) - **docs:** improve doctests for complex number instances in `array/complex128` [(#11973)](https://github.com/stdlib-js/stdlib/pull/11973) _(by Karan Anand)_
1617
- [`08624f9`](https://github.com/stdlib-js/stdlib/commit/08624f9135cd19871865ea671a232f4d3149e639) - **docs:** improve doctests for complex number instances in `array/complex128` [(#10718)](https://github.com/stdlib-js/stdlib/pull/10718) _(by Aniket Sonawane, Athan Reines, stdlib-bot)_
1718
- [`e1fa36c`](https://github.com/stdlib-js/stdlib/commit/e1fa36c2e0773845bab939eb700d3ee665a5cec9) - **bench:** refactor to use string interpolation in `array/complex128` [(#10301)](https://github.com/stdlib-js/stdlib/pull/10301) _(by Shubham)_

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
"@stdlib/assert-is-iterator-like": "^0.2.3",
8181
"@stdlib/assert-is-negative-zero": "^0.2.3",
8282
"@stdlib/assert-is-positive-zero": "^0.2.3",
83-
"@stdlib/complex-float32-ctor": "^0.1.1",
8483
"@stdlib/complex-float32-imag": "^0.1.2",
8584
"@stdlib/complex-float32-real": "^0.1.2",
8685
"@stdlib/complex-float64-base-add": "^0.2.1",

test/test.get.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var tape = require( 'tape' );
2424
var hasOwnProp = require( '@stdlib/assert-has-own-property' );
2525
var isFunction = require( '@stdlib/assert-is-function' );
26-
var Complex128 = require( '@stdlib/complex-float32-ctor' );
26+
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2727
var real = require( '@stdlib/complex-float64-real' );
2828
var imag = require( '@stdlib/complex-float64-imag' );
2929
var Complex128Array = require( './../lib' );

0 commit comments

Comments
 (0)