File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55<section class =" release " id =" unreleased " >
66
7- ## Unreleased (2024-07-07 )
7+ ## Unreleased (2024-07-17 )
88
99<section class =" features " >
1010
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- [ ` a78f7d1 ` ] ( https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910 ) - ** style:** add missing spaces _ (by Philipp Burckhardt)_
2629- [ ` 88cece6 ` ] ( https://github.com/stdlib-js/stdlib/commit/88cece679d728150847dc2b5c957b395bffe7d90 ) - ** feat:** add boolean dtype support to ` array/pool ` [ (#2486 )] ( https://github.com/stdlib-js/stdlib/pull/2486 ) _ (by Jaysukh Makvana, Athan Reines)_
2730- [ ` 75d4f83 ` ] ( https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f ) - ** refactor:** update require and include paths _ (by Athan Reines)_
Original file line number Diff line number Diff line change 8686 "@stdlib/assert-is-typed-array" : " ^0.2.1" ,
8787 "@stdlib/boolean-ctor" : " ^0.2.1" ,
8888 "@stdlib/complex-float32-ctor" : " ^0.0.1" ,
89+ "@stdlib/complex-float32-imag" : " github:stdlib-js/complex-float32-imag#main" ,
90+ "@stdlib/complex-float32-real" : " github:stdlib-js/complex-float32-real#main" ,
8991 "@stdlib/complex-float64-ctor" : " ^0.0.1" ,
90- "@stdlib/complex-imag" : " ^0.2.1" ,
91- "@stdlib/complex-imagf" : " ^0.2.1" ,
92+ "@stdlib/complex-float64-imag" : " github:stdlib-js/complex-float64-imag#main" ,
9293 "@stdlib/complex-real" : " ^0.2.1" ,
93- "@stdlib/complex-realf" : " ^0.2.1" ,
9494 "@stdlib/math-base-special-pow" : " ^0.2.1" ,
9595 "@stdlib/random-base-randu" : " ^0.2.1" ,
9696 "tape" : " git+https://github.com/kgryte/tape.git#fix/globby" ,
Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
4141var Complex64 = require ( '@stdlib/complex-float32-ctor' ) ;
4242var Boolean = require ( '@stdlib/boolean-ctor' ) ;
4343var real = require ( '@stdlib/complex-real' ) ;
44- var realf = require ( '@stdlib/complex-realf ' ) ;
45- var imag = require ( '@stdlib/complex-imag' ) ;
46- var imagf = require ( '@stdlib/complex-imagf ' ) ;
44+ var realf = require ( '@stdlib/complex-float32-real ' ) ;
45+ var imag = require ( '@stdlib/complex-float64- imag' ) ;
46+ var imagf = require ( '@stdlib/complex-float32-imag ' ) ;
4747var factory = require ( './../lib/factory.js' ) ;
4848
4949
Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
4141var Complex64 = require ( '@stdlib/complex-float32-ctor' ) ;
4242var Boolean = require ( '@stdlib/boolean-ctor' ) ;
4343var real = require ( '@stdlib/complex-real' ) ;
44- var realf = require ( '@stdlib/complex-realf ' ) ;
45- var imag = require ( '@stdlib/complex-imag' ) ;
46- var imagf = require ( '@stdlib/complex-imagf ' ) ;
44+ var realf = require ( '@stdlib/complex-float32-real ' ) ;
45+ var imag = require ( '@stdlib/complex-float64- imag' ) ;
46+ var imagf = require ( '@stdlib/complex-float32-imag ' ) ;
4747var typedarraypool = require ( './../lib' ) ;
4848
4949
You can’t perform that action at this time.
0 commit comments