Skip to content

Commit 655862e

Browse files
committed
Auto-generated commit
1 parent 667b165 commit 655862e

5 files changed

Lines changed: 20 additions & 3 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`e0a3342`](https://github.com/stdlib-js/stdlib/commit/e0a33421dde2803276ad95491519f8839415d93c) - add `outputOrder` to namespace
14+
- [`52bc84e`](https://github.com/stdlib-js/stdlib/commit/52bc84e510174894e39456fc301d1f9045ae444b) - add `ndarray/base/output-order`
1315
- [`fbcdce5`](https://github.com/stdlib-js/stdlib/commit/fbcdce5ba59c49bfc26be799ef03371e8294813a) - add `consensusOrder` to namespace
1416
- [`b3ec3d3`](https://github.com/stdlib-js/stdlib/commit/b3ec3d3993be5ae78e6da79502d2cabc9eadb2ad) - add `ndarray/base/consensus-order`
1517
- [`8ac6900`](https://github.com/stdlib-js/stdlib/commit/8ac69007fbf762b73830254f94edf16ce16799c7) - add `toReversedDimensions` to namespace
@@ -163,6 +165,11 @@ A total of 4 issues were closed in this release:
163165

164166
<details>
165167

168+
- [`e0a3342`](https://github.com/stdlib-js/stdlib/commit/e0a33421dde2803276ad95491519f8839415d93c) - **feat:** add `outputOrder` to namespace _(by Athan Reines)_
169+
- [`52bc84e`](https://github.com/stdlib-js/stdlib/commit/52bc84e510174894e39456fc301d1f9045ae444b) - **feat:** add `ndarray/base/output-order` _(by Athan Reines)_
170+
- [`31c91e5`](https://github.com/stdlib-js/stdlib/commit/31c91e5a0dc350a5c871d05e609340133413f36d) - **refactor:** simplify branching to optimize most common path _(by Athan Reines)_
171+
- [`ca19780`](https://github.com/stdlib-js/stdlib/commit/ca197805be0fc683e455e6beec112efa69297496) - **test:** add tests _(by Athan Reines)_
172+
- [`55d22b7`](https://github.com/stdlib-js/stdlib/commit/55d22b7372bc9308ceeee70d202599d8a6897eef) - **docs:** fix description _(by Athan Reines)_
166173
- [`fbcdce5`](https://github.com/stdlib-js/stdlib/commit/fbcdce5ba59c49bfc26be799ef03371e8294813a) - **feat:** add `consensusOrder` to namespace _(by Athan Reines)_
167174
- [`b3ec3d3`](https://github.com/stdlib-js/stdlib/commit/b3ec3d3993be5ae78e6da79502d2cabc9eadb2ad) - **feat:** add `ndarray/base/consensus-order` _(by Athan Reines)_
168175
- [`8ac6900`](https://github.com/stdlib-js/stdlib/commit/8ac69007fbf762b73830254f94edf16ce16799c7) - **feat:** add `toReversedDimensions` to namespace _(by Athan Reines)_

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
@@ -1093,6 +1093,15 @@ setReadOnly( ns, 'order', require( '@stdlib/ndarray-base-order' ) );
10931093
*/
10941094
setReadOnly( ns, 'outputDataType', require( '@stdlib/ndarray-base-output-dtype' ) );
10951095

1096+
/**
1097+
* @name outputOrder
1098+
* @memberof ns
1099+
* @readonly
1100+
* @type {Function}
1101+
* @see {@link module:@stdlib/ndarray/base/output-order}
1102+
*/
1103+
setReadOnly( ns, 'outputOrder', require( '@stdlib/ndarray-base-output-order' ) );
1104+
10961105
/**
10971106
* @name outputPolicyEnum2Str
10981107
* @memberof ns

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@
153153
"@stdlib/ndarray-base-ones-like": "github:stdlib-js/ndarray-base-ones-like#main",
154154
"@stdlib/ndarray-base-order": "^0.2.3",
155155
"@stdlib/ndarray-base-output-dtype": "^0.1.1",
156+
"@stdlib/ndarray-base-output-order": "github:stdlib-js/ndarray-base-output-order#main",
156157
"@stdlib/ndarray-base-output-policy-enum2str": "^0.2.3",
157158
"@stdlib/ndarray-base-output-policy-resolve-enum": "^0.2.1",
158159
"@stdlib/ndarray-base-output-policy-resolve-str": "^0.2.3",

0 commit comments

Comments
 (0)