Skip to content

Commit 300da9e

Browse files
committed
Auto-generated commit
1 parent 7d07e6e commit 300da9e

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

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

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`ba35d8f`](https://github.com/stdlib-js/stdlib/commit/ba35d8f2e923d26640828a0f035333bd778389b7) - **refactor:** update paths _(by Athan Reines)_
2526
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
2627
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
2728
- [`201ce11`](https://github.com/stdlib-js/stdlib/commit/201ce11a0985502cfc82891fda3fe3b2d656afef) - **feat:** add `array/mskput` _(by Athan Reines)_

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import Complex128Array = require( '@stdlib/array-complex128' );
2020
import Complex64Array = require( '@stdlib/array-complex64' );
21-
import Complex128 = require( '@stdlib/complex-float64' );
21+
import Complex128 = require( '@stdlib/complex-float64-ctor' );
2222
import AccessorArray = require( '@stdlib/array-base-accessor' );
2323
import mskput = require( './index' );
2424

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@stdlib/array-base-assert-is-complex-floating-point-data-type": "^0.2.1",
4242
"@stdlib/array-base-assert-is-mostly-safe-data-type-cast": "^0.2.1",
4343
"@stdlib/array-base-assert-is-real-data-type": "^0.2.1",
44-
"@stdlib/array-base-mskput": "github:stdlib-js/array-base-mskput#main",
44+
"@stdlib/array-base-mskput": "^0.1.0",
4545
"@stdlib/array-convert": "^0.2.1",
4646
"@stdlib/array-dtype": "^0.2.1",
4747
"@stdlib/assert-has-own-property": "^0.2.1",
@@ -64,9 +64,9 @@
6464
"@stdlib/assert-is-accessor-array": "^0.2.1",
6565
"@stdlib/assert-is-array": "^0.2.1",
6666
"@stdlib/assert-is-complex64": "^0.2.1",
67-
"@stdlib/complex-float32": "^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",
67+
"@stdlib/complex-float32-ctor": "^0.0.1",
68+
"@stdlib/complex-float32-imag": "^0.1.0",
69+
"@stdlib/complex-float32-real": "^0.1.0",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var BooleanArray = require( '@stdlib/array-bool' );
2727
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' );
30-
var Complex64 = require( '@stdlib/complex-float32' );
30+
var Complex64 = require( '@stdlib/complex-float32-ctor' );
3131
var realf = require( '@stdlib/complex-float32-real' );
3232
var imagf = require( '@stdlib/complex-float32-imag' );
3333
var isComplex64 = require( '@stdlib/assert-is-complex64' );

0 commit comments

Comments
 (0)