Skip to content

Commit b2e4ce4

Browse files
committed
Auto-generated commit
1 parent f2816e2 commit b2e4ce4

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`bb94409`](https://github.com/stdlib-js/stdlib/commit/bb944095335edac473c0c655d7300228ed856ca5) - add `rot90` to namespace
1314
- [`902e522`](https://github.com/stdlib-js/stdlib/commit/902e522762ec678bc548d6a503d5a94046e708f1) - add `ndarray/rot90` [(#11705)](https://github.com/stdlib-js/stdlib/pull/11705)
1415
- [`7c878a8`](https://github.com/stdlib-js/stdlib/commit/7c878a8c3103503f9a2f7782861e3b9ccfeb33e5) - add `rot180` to namespace
1516
- [`2a4f2f1`](https://github.com/stdlib-js/stdlib/commit/2a4f2f1edc5a5e3455b9be6a5390120e7b43ff79) - add `reinterpretBoolean` to namespace
@@ -878,6 +879,7 @@ A total of 49 issues were closed in this release:
878879

879880
<details>
880881

882+
- [`bb94409`](https://github.com/stdlib-js/stdlib/commit/bb944095335edac473c0c655d7300228ed856ca5) - **feat:** add `rot90` to namespace _(by Athan Reines)_
881883
- [`902e522`](https://github.com/stdlib-js/stdlib/commit/902e522762ec678bc548d6a503d5a94046e708f1) - **feat:** add `ndarray/rot90` [(#11705)](https://github.com/stdlib-js/stdlib/pull/11705) _(by Muhammad Haris, Athan Reines)_
882884
- [`b5fb2f8`](https://github.com/stdlib-js/stdlib/commit/b5fb2f8f0aa00375fa5b53925db763de97933c8f) - **docs:** update notes _(by Athan Reines)_
883885
- [`40db61d`](https://github.com/stdlib-js/stdlib/commit/40db61db7ca352e3a55a699a010d984fc05f6144) - **chore:** follow-up fixes [(#11721)](https://github.com/stdlib-js/stdlib/pull/11721) _(by Philipp Burckhardt)_

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,15 @@ setReadOnly( ns, 'reverse', require( './../reverse' ) );
729729
*/
730730
setReadOnly( ns, 'reverseDimension', require( './../reverse-dimension' ) );
731731

732+
/**
733+
* @name rot90
734+
* @memberof ns
735+
* @readonly
736+
* @type {Function}
737+
* @see {@link module:@stdlib/ndarray/rot90}
738+
*/
739+
setReadOnly( ns, 'rot90', require( './../rot90' ) );
740+
732741
/**
733742
* @name rotr90
734743
* @memberof ns

0 commit comments

Comments
 (0)