Skip to content

Commit 237d895

Browse files
committed
Auto-generated commit
1 parent a4bd3d4 commit 237d895

5 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Features
1212

13+
- [`e00d73a`](https://github.com/stdlib-js/stdlib/commit/e00d73a3cb8c5355a46771ed5630d178e25ec0f4) - add `onesLike` to namespace
14+
- [`d200536`](https://github.com/stdlib-js/stdlib/commit/d200536a79672d3a31022f894a63acdf08b79159) - add `ndarray/base/ones-like`
1315
- [`baef022`](https://github.com/stdlib-js/stdlib/commit/baef0223f86db141fa6a1dabc15ec6c5fa2f0f59) - update `ndarray/base` TypeScript declarations [(#11131)](https://github.com/stdlib-js/stdlib/pull/11131)
1416
- [`91e532c`](https://github.com/stdlib-js/stdlib/commit/91e532cf02003c24e6ee03c0d60d24b32169df4e) - add `ones` to namespace
1517
- [`78bcb59`](https://github.com/stdlib-js/stdlib/commit/78bcb5902c6120dfcf9e8472a6ce8c3d4f61968f) - add `ndarray/base/ones`
@@ -90,6 +92,8 @@ This release closes the following issue:
9092

9193
<details>
9294

95+
- [`e00d73a`](https://github.com/stdlib-js/stdlib/commit/e00d73a3cb8c5355a46771ed5630d178e25ec0f4) - **feat:** add `onesLike` to namespace _(by Athan Reines)_
96+
- [`d200536`](https://github.com/stdlib-js/stdlib/commit/d200536a79672d3a31022f894a63acdf08b79159) - **feat:** add `ndarray/base/ones-like` _(by Athan Reines)_
9397
- [`baef022`](https://github.com/stdlib-js/stdlib/commit/baef0223f86db141fa6a1dabc15ec6c5fa2f0f59) - **feat:** update `ndarray/base` TypeScript declarations [(#11131)](https://github.com/stdlib-js/stdlib/pull/11131) _(by stdlib-bot)_
9498
- [`ae72f8e`](https://github.com/stdlib-js/stdlib/commit/ae72f8e7910cbfd1a0204bedd7f46bff23c74aa0) - **test:** use corrected expected type for `complex64` tests _(by Athan Reines)_
9599
- [`2a1517f`](https://github.com/stdlib-js/stdlib/commit/2a1517fe8ee92381e9db01cab5f99241c542a6fc) - **test:** use correct expected type in complex64 tests for `ndarray/base/ones` _(by Philipp Burckhardt)_

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

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

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -967,6 +967,15 @@ setReadOnly( ns, 'offset', require( '@stdlib/ndarray-base-offset' ) );
967967
*/
968968
setReadOnly( ns, 'ones', require( '@stdlib/ndarray-base-ones' ) );
969969

970+
/**
971+
* @name onesLike
972+
* @memberof ns
973+
* @readonly
974+
* @type {Function}
975+
* @see {@link module:@stdlib/ndarray/base/ones-like}
976+
*/
977+
setReadOnly( ns, 'onesLike', require( '@stdlib/ndarray-base-ones-like' ) );
978+
970979
/**
971980
* @name order
972981
* @memberof ns

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
"@stdlib/ndarray-base-numel-dimension": "^0.3.3",
140140
"@stdlib/ndarray-base-offset": "^0.2.3",
141141
"@stdlib/ndarray-base-ones": "github:stdlib-js/ndarray-base-ones#main",
142+
"@stdlib/ndarray-base-ones-like": "github:stdlib-js/ndarray-base-ones-like#main",
142143
"@stdlib/ndarray-base-order": "^0.2.3",
143144
"@stdlib/ndarray-base-output-dtype": "^0.1.1",
144145
"@stdlib/ndarray-base-output-policy-enum2str": "^0.2.3",

0 commit comments

Comments
 (0)