Skip to content

Commit 7c58ada

Browse files
committed
Auto-generated commit
1 parent b7fa6bb commit 7c58ada

3 files changed

Lines changed: 5 additions & 2 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 (2025-09-24)
7+
## Unreleased (2025-09-25)
88

99
<section class="features">
1010

@@ -594,6 +594,7 @@ A total of 25 issues were closed in this release:
594594

595595
<details>
596596

597+
- [`2798013`](https://github.com/stdlib-js/stdlib/commit/2798013a8edf4eb58a762928e8625089eef0f4f5) - **docs:** update example _(by Athan Reines)_
597598
- [`4dba8a6`](https://github.com/stdlib-js/stdlib/commit/4dba8a659480c7c39382084ba3bb7fdace936609) - **chore:** fix JavaScript lint errors [(#8134)](https://github.com/stdlib-js/stdlib/pull/8134) _(by Payal Goswami, Athan Reines)_
598599
- [`fa53483`](https://github.com/stdlib-js/stdlib/commit/fa534835906f659a1b322a1c2e5c7e3328db43ce) - **docs:** update Markdown stdlib package URLs [(#8131)](https://github.com/stdlib-js/stdlib/pull/8131) _(by stdlib-bot)_
599600
- [`ba14b89`](https://github.com/stdlib-js/stdlib/commit/ba14b8911df283cc272c48d8d382df60f1a3e750) - **feat:** add `ndarray/any-by` [(#8110)](https://github.com/stdlib-js/stdlib/pull/8110) _(by Muhammad Haris, Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
223223
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
224224
Yugal Kaushik <yugalkaushik14@gmail.com>
225225
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
226+
Zuhair Ahmad <157193652+Zuhair-CS@users.noreply.github.com>
226227
deepak427 <62477872+deepak427@users.noreply.github.com>
227228
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
228229
ditsu <170345142+ditsus@users.noreply.github.com>

base/pop/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Returns an array containing a truncated view of an input ndarray and a view of t
4646

4747
```javascript
4848
var ndarray = require( '@stdlib/ndarray/ctor' );
49+
var getShape = require( '@stdlib/ndarray/shape' );
4950
var ndarray2array = require( '@stdlib/ndarray/to-array' );
5051

5152
var buffer = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
@@ -56,7 +57,7 @@ var offset = 0;
5657
var x = ndarray( 'generic', buffer, shape, strides, offset, 'row-major' );
5758
// returns <ndarray>
5859

59-
var sh = x.shape;
60+
var sh = getShape( x );
6061
// returns [ 3, 2 ]
6162

6263
var arr = ndarray2array( x );

0 commit comments

Comments
 (0)