Skip to content

Commit 1e2c3db

Browse files
committed
Auto-generated commit
1 parent 0240dd7 commit 1e2c3db

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
## Unreleased (2026-04-18)
7+
## Unreleased (2026-04-19)
88

99
<section class="features">
1010

@@ -850,6 +850,7 @@ A total of 49 issues were closed in this release:
850850

851851
<details>
852852

853+
- [`c4ace9d`](https://github.com/stdlib-js/stdlib/commit/c4ace9d015730f6552a6994c34b5ea8d5480e9e5) - **refactor:** create read-only views _(by Athan Reines)_
853854
- [`414d61b`](https://github.com/stdlib-js/stdlib/commit/414d61b8adf854cfa4582bd9659c760b03bc40a7) - **feat:** add `colcat` to namespace _(by Athan Reines)_
854855
- [`648e90d`](https://github.com/stdlib-js/stdlib/commit/648e90d07d66f130eca610f79242ceea902f9e10) - **feat:** add `ndarray/colcat` [(#11527)](https://github.com/stdlib-js/stdlib/pull/11527) _(by Muhammad Haris)_
855856
- [`80e9b07`](https://github.com/stdlib-js/stdlib/commit/80e9b07afb5318780a47d362a34e4ee41b39cd81) - **feat:** add `trues`, `falses`, and `tile` to namespace _(by Athan Reines)_

colcat/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function assign( arrays, out ) {
9999
throw new RangeError( format( 'invalid argument. Must provide one- or two-dimensional ndarrays. Number of dimensions: `%u`.', n ) );
100100
}
101101
if ( n === 1 ) {
102-
arr = expandDimensions( ndarraylike2ndarray( arr ), -1, true );
102+
arr = expandDimensions( ndarraylike2ndarray( arr ), -1, false );
103103
}
104104
sh = getShape( arr, false );
105105
if ( i === 0 ) {

colcat/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function colcat( arrays ) {
8686
throw new RangeError( format( 'invalid argument. Must provide one- or two-dimensional ndarrays. Number of dimensions: `%u`.', n ) );
8787
}
8888
if ( n === 1 ) {
89-
arr = expandDimensions( ndarraylike2ndarray( arr ), -1, true );
89+
arr = expandDimensions( ndarraylike2ndarray( arr ), -1, false );
9090
}
9191
sh = getShape( arr, false );
9292
if ( i === 0 ) {

0 commit comments

Comments
 (0)