Skip to content

Commit f827fad

Browse files
committed
Auto-generated commit
1 parent 46f9032 commit f827fad

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-24)
7+
## Unreleased (2026-04-25)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`575ae77`](https://github.com/stdlib-js/stdlib/commit/575ae7709faa304df83a96aa99994cd93611835f) - add `appendSingletonDimensions` to namespace
14+
- [`44ec734`](https://github.com/stdlib-js/stdlib/commit/44ec734bbf65622c8e5ba4cae897f0f0f19bcd85) - add `toRot90` to namespace
15+
- [`8cb6c7c`](https://github.com/stdlib-js/stdlib/commit/8cb6c7c7a1d109ec00a04312ecf23532036f45ac) - add `ndarray/base/append-singleton-dimensions` [(#11782)](https://github.com/stdlib-js/stdlib/pull/11782)
16+
- [`94fc2ce`](https://github.com/stdlib-js/stdlib/commit/94fc2ced847969980cae2241b175f0f9f799658e) - add `ndarray/base/to-rot90` [(#11748)](https://github.com/stdlib-js/stdlib/pull/11748)
1317
- [`c88ea56`](https://github.com/stdlib-js/stdlib/commit/c88ea56a2f3acfe5ce345108eb42ea991b689d3f) - add `toRotr90` to namespace
1418
- [`465a072`](https://github.com/stdlib-js/stdlib/commit/465a072ec949832752bd1aa2bdb7a3b165e90763) - add `ndarray/base/to-rotr90` [(#11747)](https://github.com/stdlib-js/stdlib/pull/11747)
1519
- [`7c878a8`](https://github.com/stdlib-js/stdlib/commit/7c878a8c3103503f9a2f7782861e3b9ccfeb33e5) - add `rot180` to namespace
@@ -144,6 +148,11 @@ A total of 4 issues were closed in this release:
144148

145149
<details>
146150

151+
- [`575ae77`](https://github.com/stdlib-js/stdlib/commit/575ae7709faa304df83a96aa99994cd93611835f) - **feat:** add `appendSingletonDimensions` to namespace _(by Athan Reines)_
152+
- [`44ec734`](https://github.com/stdlib-js/stdlib/commit/44ec734bbf65622c8e5ba4cae897f0f0f19bcd85) - **feat:** add `toRot90` to namespace _(by Athan Reines)_
153+
- [`8cb6c7c`](https://github.com/stdlib-js/stdlib/commit/8cb6c7c7a1d109ec00a04312ecf23532036f45ac) - **feat:** add `ndarray/base/append-singleton-dimensions` [(#11782)](https://github.com/stdlib-js/stdlib/pull/11782) _(by Muhammad Haris, Athan Reines)_
154+
- [`3ca7c21`](https://github.com/stdlib-js/stdlib/commit/3ca7c2179081a36fa279dbb1e12f8e81d811e997) - **docs:** propagate recent `ndarray/base` comment and note fixes to sibling packages [(#11762)](https://github.com/stdlib-js/stdlib/pull/11762) _(by Philipp Burckhardt)_
155+
- [`94fc2ce`](https://github.com/stdlib-js/stdlib/commit/94fc2ced847969980cae2241b175f0f9f799658e) - **feat:** add `ndarray/base/to-rot90` [(#11748)](https://github.com/stdlib-js/stdlib/pull/11748) _(by Muhammad Haris, Athan Reines)_
147156
- [`c88ea56`](https://github.com/stdlib-js/stdlib/commit/c88ea56a2f3acfe5ce345108eb42ea991b689d3f) - **feat:** add `toRotr90` to namespace _(by Athan Reines)_
148157
- [`465a072`](https://github.com/stdlib-js/stdlib/commit/465a072ec949832752bd1aa2bdb7a3b165e90763) - **feat:** add `ndarray/base/to-rotr90` [(#11747)](https://github.com/stdlib-js/stdlib/pull/11747) _(by Muhammad Haris, Athan Reines)_
149158
- [`1bb47ae`](https://github.com/stdlib-js/stdlib/commit/1bb47aee4385a96718afb38792d96ec5ec09e7da) - **docs:** fix comment _(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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ setReadOnly( ns, 'any', require( '@stdlib/ndarray-base-any' ) );
5858
*/
5959
setReadOnly( ns, 'anyBy', require( '@stdlib/ndarray-base-any-by' ) );
6060

61+
/**
62+
* @name appendSingletonDimensions
63+
* @memberof ns
64+
* @readonly
65+
* @type {Function}
66+
* @see {@link module:@stdlib/ndarray/base/append-singleton-dimensions}
67+
*/
68+
setReadOnly( ns, 'appendSingletonDimensions', require( '@stdlib/ndarray-base-append-singleton-dimensions' ) );
69+
6170
/**
6271
* @name assert
6372
* @memberof ns
@@ -1534,6 +1543,15 @@ setReadOnly( ns, 'toReversed', require( '@stdlib/ndarray-base-to-reversed' ) );
15341543
*/
15351544
setReadOnly( ns, 'toReversedDimension', require( '@stdlib/ndarray-base-to-reversed-dimension' ) );
15361545

1546+
/**
1547+
* @name toRot90
1548+
* @memberof ns
1549+
* @readonly
1550+
* @type {Function}
1551+
* @see {@link module:@stdlib/ndarray/base/to-rot90}
1552+
*/
1553+
setReadOnly( ns, 'toRot90', require( '@stdlib/ndarray-base-to-rot90' ) );
1554+
15371555
/**
15381556
* @name toRotr90
15391557
* @memberof ns

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"dependencies": {
3939
"@stdlib/ndarray-base-any": "^0.1.1",
4040
"@stdlib/ndarray-base-any-by": "^0.1.1",
41+
"@stdlib/ndarray-base-append-singleton-dimensions": "github:stdlib-js/ndarray-base-append-singleton-dimensions#main",
4142
"@stdlib/ndarray-base-assert": "^0.4.1",
4243
"@stdlib/ndarray-base-assign": "^0.2.1",
4344
"@stdlib/ndarray-base-assign-scalar": "github:stdlib-js/ndarray-base-assign-scalar#main",
@@ -202,6 +203,7 @@
202203
"@stdlib/ndarray-base-to-normalized-indices": "^0.1.1",
203204
"@stdlib/ndarray-base-to-reversed": "^0.1.1",
204205
"@stdlib/ndarray-base-to-reversed-dimension": "^0.1.1",
206+
"@stdlib/ndarray-base-to-rot90": "github:stdlib-js/ndarray-base-to-rot90#main",
205207
"@stdlib/ndarray-base-to-rotr90": "github:stdlib-js/ndarray-base-to-rotr90#main",
206208
"@stdlib/ndarray-base-to-transposed": "github:stdlib-js/ndarray-base-to-transposed#main",
207209
"@stdlib/ndarray-base-to-unflattened": "github:stdlib-js/ndarray-base-to-unflattened#main",

0 commit comments

Comments
 (0)