diff --git a/CHANGELOG.md b/CHANGELOG.md index dad9d96..3791b2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-07-07) +## Unreleased (2024-07-17)
@@ -22,6 +22,9 @@
+- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_ +- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_ +- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_ - [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_ - [`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)_ - [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_ diff --git a/package.json b/package.json index c4ee0d8..4a22f8f 100644 --- a/package.json +++ b/package.json @@ -86,11 +86,11 @@ "@stdlib/assert-is-typed-array": "^0.2.1", "@stdlib/boolean-ctor": "^0.2.1", "@stdlib/complex-float32-ctor": "^0.0.1", + "@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main", + "@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main", "@stdlib/complex-float64-ctor": "^0.0.1", - "@stdlib/complex-imag": "^0.2.1", - "@stdlib/complex-imagf": "^0.2.1", + "@stdlib/complex-float64-imag": "github:stdlib-js/complex-float64-imag#main", "@stdlib/complex-real": "^0.2.1", - "@stdlib/complex-realf": "^0.2.1", "@stdlib/math-base-special-pow": "^0.2.1", "@stdlib/random-base-randu": "^0.2.1", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", diff --git a/test/test.factory.js b/test/test.factory.js index 7344c01..1dd9fd8 100644 --- a/test/test.factory.js +++ b/test/test.factory.js @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' ); var Complex64 = require( '@stdlib/complex-float32-ctor' ); var Boolean = require( '@stdlib/boolean-ctor' ); var real = require( '@stdlib/complex-real' ); -var realf = require( '@stdlib/complex-realf' ); -var imag = require( '@stdlib/complex-imag' ); -var imagf = require( '@stdlib/complex-imagf' ); +var realf = require( '@stdlib/complex-float32-real' ); +var imag = require( '@stdlib/complex-float64-imag' ); +var imagf = require( '@stdlib/complex-float32-imag' ); var factory = require( './../lib/factory.js' ); diff --git a/test/test.js b/test/test.js index e60c54f..e246fab 100644 --- a/test/test.js +++ b/test/test.js @@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' ); var Complex64 = require( '@stdlib/complex-float32-ctor' ); var Boolean = require( '@stdlib/boolean-ctor' ); var real = require( '@stdlib/complex-real' ); -var realf = require( '@stdlib/complex-realf' ); -var imag = require( '@stdlib/complex-imag' ); -var imagf = require( '@stdlib/complex-imagf' ); +var realf = require( '@stdlib/complex-float32-real' ); +var imag = require( '@stdlib/complex-float64-imag' ); +var imagf = require( '@stdlib/complex-float32-imag' ); var typedarraypool = require( './../lib' );