Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 18, 2024
1 parent 7d07e6e commit 300da9e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-17)
## Unreleased (2024-07-18)

<section class="features">

Expand All @@ -22,6 +22,7 @@

<details>

- [`ba35d8f`](https://github.com/stdlib-js/stdlib/commit/ba35d8f2e923d26640828a0f035333bd778389b7) - **refactor:** update paths _(by Athan Reines)_
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
- [`201ce11`](https://github.com/stdlib-js/stdlib/commit/201ce11a0985502cfc82891fda3fe3b2d656afef) - **feat:** add `array/mskput` _(by Athan Reines)_
Expand Down
2 changes: 1 addition & 1 deletion docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import Complex128Array = require( '@stdlib/array-complex128' );
import Complex64Array = require( '@stdlib/array-complex64' );
import Complex128 = require( '@stdlib/complex-float64' );
import Complex128 = require( '@stdlib/complex-float64-ctor' );
import AccessorArray = require( '@stdlib/array-base-accessor' );
import mskput = require( './index' );

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@stdlib/array-base-assert-is-complex-floating-point-data-type": "^0.2.1",
"@stdlib/array-base-assert-is-mostly-safe-data-type-cast": "^0.2.1",
"@stdlib/array-base-assert-is-real-data-type": "^0.2.1",
"@stdlib/array-base-mskput": "github:stdlib-js/array-base-mskput#main",
"@stdlib/array-base-mskput": "^0.1.0",
"@stdlib/array-convert": "^0.2.1",
"@stdlib/array-dtype": "^0.2.1",
"@stdlib/assert-has-own-property": "^0.2.1",
Expand All @@ -64,9 +64,9 @@
"@stdlib/assert-is-accessor-array": "^0.2.1",
"@stdlib/assert-is-array": "^0.2.1",
"@stdlib/assert-is-complex64": "^0.2.1",
"@stdlib/complex-float32": "^0.2.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-float32-ctor": "^0.0.1",
"@stdlib/complex-float32-imag": "^0.1.0",
"@stdlib/complex-float32-real": "^0.1.0",
"@stdlib/math-base-special-pow": "^0.2.1",
"@stdlib/random-array-discrete-uniform": "^0.2.1",
"@stdlib/random-base-bernoulli": "^0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var BooleanArray = require( '@stdlib/array-bool' );
var zeros = require( '@stdlib/array-zeros' );
var toAccessorArray = require( '@stdlib/array-base-to-accessor-array' );
var isAccessorArray = require( '@stdlib/assert-is-accessor-array' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var realf = require( '@stdlib/complex-float32-real' );
var imagf = require( '@stdlib/complex-float32-imag' );
var isComplex64 = require( '@stdlib/assert-is-complex64' );
Expand Down

0 comments on commit 300da9e

Please sign in to comment.