File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<section class =" release " id =" unreleased " >
6
6
7
- ## Unreleased (2024-06-21 )
7
+ ## Unreleased (2024-07-17 )
8
8
9
9
<section class =" features " >
10
10
22
22
23
23
<details >
24
24
25
+ - [ ` 8d4c46b ` ] ( https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f ) - ** refactor:** update paths _ (by Athan Reines)_
26
+ - [ ` 18b3c79 ` ] ( https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96 ) - ** refactor:** update paths _ (by Athan Reines)_
25
27
- [ ` 7b97e18 ` ] ( https://github.com/stdlib-js/stdlib/commit/7b97e18463ee395851cb173559793a9d2a7c37e3 ) - ** feat:** add ` array/place ` _ (by Athan Reines)_
26
28
27
29
</details >
Original file line number Diff line number Diff line change 65
65
"@stdlib/assert-is-array" : " ^0.2.1" ,
66
66
"@stdlib/assert-is-complex64" : " ^0.2.1" ,
67
67
"@stdlib/complex-float32" : " ^0.2.1" ,
68
- "@stdlib/complex-imagf " : " ^0.2.1 " ,
69
- "@stdlib/complex-realf " : " ^0.2.1 " ,
68
+ "@stdlib/complex-float32-imag " : " github:stdlib-js/complex-float32-imag#main " ,
69
+ "@stdlib/complex-float32-real " : " github:stdlib-js/complex-float32-real#main " ,
70
70
"@stdlib/math-base-special-pow" : " ^0.2.1" ,
71
71
"@stdlib/random-array-discrete-uniform" : " ^0.2.1" ,
72
72
"@stdlib/random-base-bernoulli" : " ^0.2.1" ,
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ var zeros = require( '@stdlib/array-zeros' );
28
28
var toAccessorArray = require ( '@stdlib/array-base-to-accessor-array' ) ;
29
29
var isAccessorArray = require ( '@stdlib/assert-is-accessor-array' ) ;
30
30
var Complex64 = require ( '@stdlib/complex-float32' ) ;
31
- var realf = require ( '@stdlib/complex-realf ' ) ;
32
- var imagf = require ( '@stdlib/complex-imagf ' ) ;
31
+ var realf = require ( '@stdlib/complex-float32-real ' ) ;
32
+ var imagf = require ( '@stdlib/complex-float32-imag ' ) ;
33
33
var isComplex64 = require ( '@stdlib/assert-is-complex64' ) ;
34
34
var place = require ( './../lib' ) ;
35
35
You can’t perform that action at this time.
0 commit comments