Skip to content

Commit 5bb106e

Browse files
committed
Auto-generated commit
1 parent a22b489 commit 5bb106e

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-30)
7+
## Unreleased (2026-05-01)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`7c54f16`](https://github.com/stdlib-js/stdlib/commit/7c54f16e5ad8e3bb02fef147a07faf04e4d56e40) - add `toRot180` and `toRotl90` to namespace
1314
- [`e3a873f`](https://github.com/stdlib-js/stdlib/commit/e3a873f246d0b6e2291c6299c7abd82a1eab2399) - add `ndarray/to-rot180` [(#11848)](https://github.com/stdlib-js/stdlib/pull/11848)
1415
- [`6cda0c6`](https://github.com/stdlib-js/stdlib/commit/6cda0c6d97f586093ca32e101114c718eab9ea2f) - add `ndarray/to-rotl90` [(#11847)](https://github.com/stdlib-js/stdlib/pull/11847)
1516
- [`ba7a157`](https://github.com/stdlib-js/stdlib/commit/ba7a1573c32d5660eb775e6abc9e1edc74f418bf) - add `reinterpretComplex` to namespace
@@ -905,6 +906,7 @@ A total of 49 issues were closed in this release:
905906

906907
<details>
907908

909+
- [`7c54f16`](https://github.com/stdlib-js/stdlib/commit/7c54f16e5ad8e3bb02fef147a07faf04e4d56e40) - **feat:** add `toRot180` and `toRotl90` to namespace _(by Athan Reines)_
908910
- [`e34b36c`](https://github.com/stdlib-js/stdlib/commit/e34b36cdedc2287b3eff185f30986cb65bfd6ca5) - **docs:** update namespace table of contents [(#11855)](https://github.com/stdlib-js/stdlib/pull/11855) _(by stdlib-bot, Philipp Burckhardt)_
909911
- [`6b16c0b`](https://github.com/stdlib-js/stdlib/commit/6b16c0bec485b03bf84f577434163d707e2120a9) - **docs:** update related packages sections [(#11853)](https://github.com/stdlib-js/stdlib/pull/11853) _(by stdlib-bot)_
910912
- [`e3a873f`](https://github.com/stdlib-js/stdlib/commit/e3a873f246d0b6e2291c6299c7abd82a1eab2399) - **feat:** add `ndarray/to-rot180` [(#11848)](https://github.com/stdlib-js/stdlib/pull/11848) _(by Muhammad Haris)_

lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,6 +1017,24 @@ setReadOnly( ns, 'toReversedDimension', require( './../to-reversed-dimension' )
10171017
*/
10181018
setReadOnly( ns, 'toRot90', require( './../to-rot90' ) );
10191019

1020+
/**
1021+
* @name toRot180
1022+
* @memberof ns
1023+
* @readonly
1024+
* @type {Function}
1025+
* @see {@link module:@stdlib/ndarray/to-rot180}
1026+
*/
1027+
setReadOnly( ns, 'toRot180', require( './../to-rot180' ) );
1028+
1029+
/**
1030+
* @name toRotl90
1031+
* @memberof ns
1032+
* @readonly
1033+
* @type {Function}
1034+
* @see {@link module:@stdlib/ndarray/to-rotl90}
1035+
*/
1036+
setReadOnly( ns, 'toRotl90', require( './../to-rotl90' ) );
1037+
10201038
/**
10211039
* @name toRotr90
10221040
* @memberof ns

0 commit comments

Comments
 (0)