Skip to content

Commit fbd1ca7

Browse files
committed
Auto-generated commit
1 parent cfa1c86 commit fbd1ca7

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-20)
7+
## Unreleased (2026-04-21)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`4a00996`](https://github.com/stdlib-js/stdlib/commit/4a0099621945f4fb17cd8bde8d7375715e309b6e) - add `reinterpret-complex128` to namespace
14+
- [`8860b05`](https://github.com/stdlib-js/stdlib/commit/8860b05c83ef17376bfa54b47c2aaa57a92b2fe1) - add `rot90` to namespace
15+
- [`7368bff`](https://github.com/stdlib-js/stdlib/commit/7368bff8ade81ae99638f53ceacc8b5ab5d04c74) - add `ndarray/base/rot90` [(#11660)](https://github.com/stdlib-js/stdlib/pull/11660)
16+
- [`1615c51`](https://github.com/stdlib-js/stdlib/commit/1615c51bd03478de8adedf82e5718ea48ecba290) - add `ndarray/base/reinterpret-complex128` [(#11629)](https://github.com/stdlib-js/stdlib/pull/11629)
1317
- [`1ab30a1`](https://github.com/stdlib-js/stdlib/commit/1ab30a16866d523544f06017e56a70e68d9933cf) - add `rotl90` to namespace
1418
- [`9ef9c56`](https://github.com/stdlib-js/stdlib/commit/9ef9c56b8d3fccad2b75d4f4316f7a99fa5bc660) - add `ndarray/base/rotl90` [(#11633)](https://github.com/stdlib-js/stdlib/pull/11633)
1519
- [`bbac071`](https://github.com/stdlib-js/stdlib/commit/bbac07144b6a85eb308745484ad491ce45bcd0f8) - add `atleast1d`, `atleast2d`, and `atleast3d` to namespace
@@ -132,6 +136,11 @@ A total of 4 issues were closed in this release:
132136

133137
<details>
134138

139+
- [`4a00996`](https://github.com/stdlib-js/stdlib/commit/4a0099621945f4fb17cd8bde8d7375715e309b6e) - **feat:** add `reinterpret-complex128` to namespace _(by Athan Reines)_
140+
- [`8860b05`](https://github.com/stdlib-js/stdlib/commit/8860b05c83ef17376bfa54b47c2aaa57a92b2fe1) - **feat:** add `rot90` to namespace _(by Athan Reines)_
141+
- [`7368bff`](https://github.com/stdlib-js/stdlib/commit/7368bff8ade81ae99638f53ceacc8b5ab5d04c74) - **feat:** add `ndarray/base/rot90` [(#11660)](https://github.com/stdlib-js/stdlib/pull/11660) _(by Muhammad Haris, Athan Reines)_
142+
- [`1615c51`](https://github.com/stdlib-js/stdlib/commit/1615c51bd03478de8adedf82e5718ea48ecba290) - **feat:** add `ndarray/base/reinterpret-complex128` [(#11629)](https://github.com/stdlib-js/stdlib/pull/11629) _(by Muhammad Haris)_
143+
- [`59d0640`](https://github.com/stdlib-js/stdlib/commit/59d0640a16660401392d422f98261c2f9c8cb4be) - **docs:** propagate recent fixes to sibling packages [(#11671)](https://github.com/stdlib-js/stdlib/pull/11671) _(by Philipp Burckhardt)_
135144
- [`0f96d30`](https://github.com/stdlib-js/stdlib/commit/0f96d3092e11bed46e6cd83efd770c2d6fa77af1) - **docs:** update namespace table of contents [(#11637)](https://github.com/stdlib-js/stdlib/pull/11637) _(by stdlib-bot, Philipp Burckhardt)_
136145
- [`1ab30a1`](https://github.com/stdlib-js/stdlib/commit/1ab30a16866d523544f06017e56a70e68d9933cf) - **feat:** add `rotl90` to namespace _(by Athan Reines)_
137146
- [`9ef9c56`](https://github.com/stdlib-js/stdlib/commit/9ef9c56b8d3fccad2b75d4f4316f7a99fa5bc660) - **feat:** add `ndarray/base/rotl90` [(#11633)](https://github.com/stdlib-js/stdlib/pull/11633) _(by Muhammad Haris)_

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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,15 @@ setReadOnly( ns, 'quinaryLoopOrder', require( '@stdlib/ndarray-base-quinary-loop
11561156
*/
11571157
setReadOnly( ns, 'quinaryBlockSize', require( '@stdlib/ndarray-base-quinary-tiling-block-size' ) );
11581158

1159+
/**
1160+
* @name reinterpretComplex128
1161+
* @memberof ns
1162+
* @readonly
1163+
* @type {Function}
1164+
* @see {@link module:@stdlib/ndarray/base/reinterpret-complex128}
1165+
*/
1166+
setReadOnly( ns, 'reinterpretComplex128', require( '@stdlib/ndarray-base-reinterpret-complex128' ) );
1167+
11591168
/**
11601169
* @name removeSingletonDimensions
11611170
* @memberof ns
@@ -1183,6 +1192,15 @@ setReadOnly( ns, 'reverse', require( '@stdlib/ndarray-base-reverse' ) );
11831192
*/
11841193
setReadOnly( ns, 'reverseDimension', require( '@stdlib/ndarray-base-reverse-dimension' ) );
11851194

1195+
/**
1196+
* @name rot90
1197+
* @memberof ns
1198+
* @readonly
1199+
* @type {Function}
1200+
* @see {@link module:@stdlib/ndarray/base/rot90}
1201+
*/
1202+
setReadOnly( ns, 'rot90', require( '@stdlib/ndarray-base-rot90' ) );
1203+
11861204
/**
11871205
* @name rotl90
11881206
* @memberof ns

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,11 @@
160160
"@stdlib/ndarray-base-quaternary-tiling-block-size": "^0.1.1",
161161
"@stdlib/ndarray-base-quinary-loop-interchange-order": "^0.1.1",
162162
"@stdlib/ndarray-base-quinary-tiling-block-size": "^0.1.1",
163+
"@stdlib/ndarray-base-reinterpret-complex128": "github:stdlib-js/ndarray-base-reinterpret-complex128#main",
163164
"@stdlib/ndarray-base-remove-singleton-dimensions": "^0.2.3",
164165
"@stdlib/ndarray-base-reverse": "^0.3.1",
165166
"@stdlib/ndarray-base-reverse-dimension": "^0.2.3",
167+
"@stdlib/ndarray-base-rot90": "github:stdlib-js/ndarray-base-rot90#main",
166168
"@stdlib/ndarray-base-rotl90": "github:stdlib-js/ndarray-base-rotl90#main",
167169
"@stdlib/ndarray-base-rotr90": "github:stdlib-js/ndarray-base-rotr90#main",
168170
"@stdlib/ndarray-base-serialize-meta-data": "^0.2.3",

0 commit comments

Comments
 (0)