Skip to content

Commit 2da490c

Browse files
committed
Auto-generated commit
1 parent cd3f48e commit 2da490c

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
55
<section class="release" id="unreleased">
66

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

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
16+
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
1517
- [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_
1618

1719
</details>
@@ -24,8 +26,9 @@
2426

2527
### Contributors
2628

27-
A total of 1 person contributed to this release. Thank you to this contributor:
29+
A total of 2 people contributed to this release. Thank you to the following contributors:
2830

31+
- Athan Reines
2932
- Philipp Burckhardt
3033

3134
</section>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
"@stdlib/assert-is-method": "^0.2.1",
6161
"@stdlib/assert-is-same-complex128array": "^0.2.1",
6262
"@stdlib/assert-is-same-complex64array": "^0.2.1",
63-
"@stdlib/complex-imagf": "^0.2.1",
64-
"@stdlib/complex-realf": "^0.2.1",
63+
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
64+
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
6565
"@stdlib/math-base-special-pow": "^0.2.1",
6666
"@stdlib/random-array-discrete-uniform": "^0.2.1",
6767
"@stdlib/random-base-discrete-uniform": "^0.2.1",

test/test.main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
var tape = require( 'tape' );
2424
var Complex64Array = require( '@stdlib/array-complex64' );
2525
var toAccessorArray = require( '@stdlib/array-base-to-accessor-array' );
26-
var realf = require( '@stdlib/complex-realf' );
27-
var imagf = require( '@stdlib/complex-imagf' );
26+
var realf = require( '@stdlib/complex-float32-real' );
27+
var imagf = require( '@stdlib/complex-float32-imag' );
2828
var isComplex64 = require( '@stdlib/assert-is-complex64' );
2929
var takeMap = require( './../lib' );
3030

0 commit comments

Comments
 (0)