Skip to content

Commit 1d35d7a

Browse files
committed
Auto-generated commit
1 parent 2411a02 commit 1d35d7a

4 files changed

Lines changed: 13 additions & 10 deletions

File tree

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-07)
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
- [`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)_

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@
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",

test/test.factory.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
4141
var Complex64 = require( '@stdlib/complex-float32-ctor' );
4242
var Boolean = require( '@stdlib/boolean-ctor' );
4343
var 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' );
4747
var factory = require( './../lib/factory.js' );
4848

4949

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ var Complex128 = require( '@stdlib/complex-float64-ctor' );
4141
var Complex64 = require( '@stdlib/complex-float32-ctor' );
4242
var Boolean = require( '@stdlib/boolean-ctor' );
4343
var 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' );
4747
var typedarraypool = require( './../lib' );
4848

4949

0 commit comments

Comments
 (0)