Skip to content

Commit f50faa0

Browse files
committed
Auto-generated commit
1 parent 0604b5d commit f50faa0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

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

7-
## Unreleased (2024-07-03)
7+
## Unreleased (2024-07-17)
88

99
<section class="features">
1010

@@ -22,6 +22,9 @@
2222

2323
<details>
2424

25+
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
26+
- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_
27+
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
2528
- [`48fd331`](https://github.com/stdlib-js/stdlib/commit/48fd331d8f79ee2d51cd2618e70f79809f52336e) - **feat:** add boolean dtype support to `array/convert-same` [(#2494)](https://github.com/stdlib-js/stdlib/pull/2494) _(by Jaysukh Makvana, Athan Reines)_
2629

2730
</details>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@
7575
"@stdlib/assert-is-uint32array": "^0.2.1",
7676
"@stdlib/assert-is-uint8array": "^0.2.1",
7777
"@stdlib/assert-is-uint8clampedarray": "^0.2.1",
78-
"@stdlib/complex-imag": "^0.2.1",
79-
"@stdlib/complex-imagf": "^0.2.1",
78+
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
79+
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
80+
"@stdlib/complex-float64-imag": "github:stdlib-js/complex-float64-imag#main",
8081
"@stdlib/complex-real": "^0.2.1",
81-
"@stdlib/complex-realf": "^0.2.1",
8282
"@stdlib/math-base-special-pow": "^0.2.1",
8383
"@stdlib/random-base-discrete-uniform": "^0.2.1",
8484
"@stdlib/strided-base-reinterpret-boolean": "^0.0.1",

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ var reinterpret64 = require( '@stdlib/strided-base-reinterpret-complex64' );
5555
var reinterpret128 = require( '@stdlib/strided-base-reinterpret-complex128' );
5656
var reinterpretBoolean = require( '@stdlib/strided-base-reinterpret-boolean' );
5757
var real = require( '@stdlib/complex-real' );
58-
var imag = require( '@stdlib/complex-imag' );
59-
var realf = require( '@stdlib/complex-realf' );
60-
var imagf = require( '@stdlib/complex-imagf' );
58+
var imag = require( '@stdlib/complex-float64-imag' );
59+
var realf = require( '@stdlib/complex-float32-real' );
60+
var imagf = require( '@stdlib/complex-float32-imag' );
6161
var convertArraySame = require( './../lib' );
6262

6363

0 commit comments

Comments
 (0)