8000 Auto-generated commit · stdlib-js/array-place@2dd324c · GitHub
[go: up one dir, main page]

Skip to content

Commit 2dd324c

Browse files
committed
Auto-generated commit
1 parent 487de40 commit 2dd324c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 3 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-06-21)
7+
## Unreleased (2024-07-17)
88

99
<section class="features">
1010

@@ -22,6 +22,8 @@
2222

2323
<details>
2424

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)_
2527
- [`7b97e18`](https://github.com/stdlib-js/stdlib/commit/7b97e18463ee395851cb173559793a9d2a7c37e3) - **feat:** add `array/place` _(by Athan Reines)_
2628

2729
</details>

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
"@stdlib/assert-is-array": "^0.2.1",
6666
"@stdlib/assert-is-complex64": "^0.2.1",
6767
"@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",
7070
"@stdlib/math-base-special-pow": "^0.2.1",
7171
"@stdlib/random-array-discrete-uniform": "^0.2.1",
7272
"@stdlib/random-base-bernoulli": "^0.2.1",

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ var zeros = require( '@stdlib/array-zeros' );
2828
var toAccessorArray = require( '@stdlib/array-base-to-accessor-array' );
2929
var isAccessorArray = require( '@stdlib/assert-is-accessor-array' );
3030
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' );
3333
var isComplex64 = require( '@stdlib/assert-is-complex64' );
3434
var place = require( './../lib' );
3535

0 commit comments

Comments
 (0)
0