Skip to content

Commit ddee31f

Browse files
committed
Auto-generated commit
1 parent 47448de commit ddee31f

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-06-21)
7+
## Unreleased (2026-06-22)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`026754a`](https://github.com/stdlib-js/stdlib/commit/026754aa609cd8aae2f3cc12d3ded66b2a4c6ce0) - add `dxpy` and `gxpy` to namespace
14+
- [`044604e`](https://github.com/stdlib-js/stdlib/commit/044604e18ddb222c03b8ab0ddd4ba0934c3ff8ae) - add `blas/ext/base/ndarray/dxpy` [(#13032)](https://github.com/stdlib-js/stdlib/pull/13032)
15+
- [`4916a79`](https://github.com/stdlib-js/stdlib/commit/4916a794abe0c977d4257e149a493e988b6dfdba) - add `blas/ext/base/ndarray/gxpy` [(#13031)](https://github.com/stdlib-js/stdlib/pull/13031)
1316
- [`5609f46`](https://github.com/stdlib-js/stdlib/commit/5609f46b441850c67aa6d22f3f023953bf2f2461) - add `gindexOfTruthy`, `gindexOfFalsy`, and `dindexOfFalsy` to namespace
1417
- [`99dac60`](https://github.com/stdlib-js/stdlib/commit/99dac6017130f2cd82a68b6772016bd3128245d3) - add `blas/ext/base/ndarray/gindex-of-truthy` [(#12998)](https://github.com/stdlib-js/stdlib/pull/12998)
1518
- [`24ae0ea`](https://github.com/stdlib-js/stdlib/commit/24ae0ea1e48f8fe8cfbcefbedbc395c590da1082) - add `blas/ext/base/ndarray/dindex-of-falsy` [(#12993)](https://github.com/stdlib-js/stdlib/pull/12993)
@@ -143,6 +146,10 @@
143146

144147
<details>
145148

149+
- [`026754a`](https://github.com/stdlib-js/stdlib/commit/026754aa609cd8aae2f3cc12d3ded66b2a4c6ce0) - **feat:** add `dxpy` and `gxpy` to namespace _(by Athan Reines)_
150+
- [`044604e`](https://github.com/stdlib-js/stdlib/commit/044604e18ddb222c03b8ab0ddd4ba0934c3ff8ae) - **feat:** add `blas/ext/base/ndarray/dxpy` [(#13032)](https://github.com/stdlib-js/stdlib/pull/13032) _(by Karan Anand)_
151+
- [`4916a79`](https://github.com/stdlib-js/stdlib/commit/4916a794abe0c977d4257e149a493e988b6dfdba) - **feat:** add `blas/ext/base/ndarray/gxpy` [(#13031)](https://github.com/stdlib-js/stdlib/pull/13031) _(by Karan Anand)_
152+
- [`a876b5e`](https://github.com/stdlib-js/stdlib/commit/a876b5e1601b2a3468f428578c03f617504db8d5) - **chore:** follow-up fixes for prior commits [(#13014)](https://github.com/stdlib-js/stdlib/pull/13014) _(by Philipp Burckhardt)_
146153
- [`5609f46`](https://github.com/stdlib-js/stdlib/commit/5609f46b441850c67aa6d22f3f023953bf2f2461) - **feat:** add `gindexOfTruthy`, `gindexOfFalsy`, and `dindexOfFalsy` to namespace _(by Athan Reines)_
147154
- [`99dac60`](https://github.com/stdlib-js/stdlib/commit/99dac6017130f2cd82a68b6772016bd3128245d3) - **feat:** add `blas/ext/base/ndarray/gindex-of-truthy` [(#12998)](https://github.com/stdlib-js/stdlib/pull/12998) _(by Muhammad Haris, Athan Reines)_
148155
- [`b3383d1`](https://github.com/stdlib-js/stdlib/commit/b3383d1340434b809dd7c2d73664293f5a29e948) - **fix:** use correct element type _(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
@@ -378,6 +378,15 @@ setReadOnly( ns, 'dsumpw', require( '@stdlib/blas-ext-base-ndarray-dsumpw' ) );
378378
*/
379379
setReadOnly( ns, 'dunitspace', require( '@stdlib/blas-ext-base-ndarray-dunitspace' ) );
380380

381+
/**
382+
* @name dxpy
383+
* @memberof ns
384+
* @readonly
385+
* @type {Function}
386+
* @see {@link module:@stdlib/blas/ext/base/ndarray/dxpy}
387+
*/
388+
setReadOnly( ns, 'dxpy', require( '@stdlib/blas-ext-base-ndarray-dxpy' ) );
389+
381390
/**
382391
* @name dxsa
383392
* @memberof ns
@@ -675,6 +684,15 @@ setReadOnly( ns, 'gsumpw', require( '@stdlib/blas-ext-base-ndarray-gsumpw' ) );
675684
*/
676685
setReadOnly( ns, 'gunitspace', require( '@stdlib/blas-ext-base-ndarray-gunitspace' ) );
677686

687+
/**
688+
* @name gxpy
689+
* @memberof ns
690+
* @readonly
691+
* @type {Function}
692+
* @see {@link module:@stdlib/blas/ext/base/ndarray/gxpy}
693+
*/
694+
setReadOnly( ns, 'gxpy', require( '@stdlib/blas-ext-base-ndarray-gxpy' ) );
695+
678696
/**
679697
* @name gxsa
680698
* @memberof ns

0 commit comments

Comments
 (0)