Skip to content

Commit 9774c10

Browse files
committed
Auto-generated commit
1 parent 20f7063 commit 9774c10

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
### Features
1212

13+
- [`5d7de9d`](https://github.com/stdlib-js/stdlib/commit/5d7de9dc58abb2a9b049a17b87f988d9d52ed56e) - add `cunitspace` to namespace
14+
- [`ae4bc4f`](https://github.com/stdlib-js/stdlib/commit/ae4bc4f7d737d97ac8e404e86402a41baa851952) - add `zunitspace` to namespace
15+
- [`d3bdd8a`](https://github.com/stdlib-js/stdlib/commit/d3bdd8a67196c7dc8c03410bdf39718002b6223f) - add `sdiff` to namespace
1316
- [`84f5112`](https://github.com/stdlib-js/stdlib/commit/84f5112f3421879e142a220cd8d6853c2f00fd3d) - add `blas/ext/base/zunitspace` [(#11709)](https://github.com/stdlib-js/stdlib/pull/11709)
1417
- [`7c287ff`](https://github.com/stdlib-js/stdlib/commit/7c287ff7a9a2e2b4b3f07afd719a440f8e6bccf2) - add `blas/ext/base/sdiff` [(#10901)](https://github.com/stdlib-js/stdlib/pull/10901)
1518
- [`e764597`](https://github.com/stdlib-js/stdlib/commit/e76459793b63f8dcd9850db3f9b83b338b5fbcee) - update `blas/base` TypeScript declarations [(#11711)](https://github.com/stdlib-js/stdlib/pull/11711)
@@ -912,6 +915,9 @@ A total of 57 issues were closed in this release:
912915

913916
<details>
914917

918+
- [`5d7de9d`](https://github.com/stdlib-js/stdlib/commit/5d7de9dc58abb2a9b049a17b87f988d9d52ed56e) - **feat:** add `cunitspace` to namespace _(by Athan Reines)_
919+
- [`ae4bc4f`](https://github.com/stdlib-js/stdlib/commit/ae4bc4f7d737d97ac8e404e86402a41baa851952) - **feat:** add `zunitspace` to namespace _(by Athan Reines)_
920+
- [`d3bdd8a`](https://github.com/stdlib-js/stdlib/commit/d3bdd8a67196c7dc8c03410bdf39718002b6223f) - **feat:** add `sdiff` to namespace _(by Athan Reines)_
915921
- [`84f5112`](https://github.com/stdlib-js/stdlib/commit/84f5112f3421879e142a220cd8d6853c2f00fd3d) - **feat:** add `blas/ext/base/zunitspace` [(#11709)](https://github.com/stdlib-js/stdlib/pull/11709) _(by Muhammad Haris)_
916922
- [`7c287ff`](https://github.com/stdlib-js/stdlib/commit/7c287ff7a9a2e2b4b3f07afd719a440f8e6bccf2) - **feat:** add `blas/ext/base/sdiff` [(#10901)](https://github.com/stdlib-js/stdlib/pull/10901) _(by Muhammad Haris)_
917923
- [`9e425b0`](https://github.com/stdlib-js/stdlib/commit/9e425b0d518324df48c43e78327c6b01b6483d75) - **docs:** update namespace table of contents [(#11712)](https://github.com/stdlib-js/stdlib/pull/11712) _(by stdlib-bot)_

ext/base/lib/index.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ setReadOnly( ns, 'csum', require( './../../../ext/base/csum' ) );
8181
*/
8282
setReadOnly( ns, 'csumkbn', require( './../../../ext/base/csumkbn' ) );
8383

84+
/**
85+
* @name cunitspace
86+
* @memberof ns
87+
* @readonly
88+
* @type {Function}
89+
* @see {@link module:@stdlib/blas/ext/base/cunitspace}
90+
*/
91+
setReadOnly( ns, 'cunitspace', require( './../../../ext/base/cunitspace' ) );
92+
8493
/**
8594
* @name czeroTo
8695
* @memberof ns
@@ -1251,6 +1260,15 @@ setReadOnly( ns, 'scusumors', require( './../../../ext/base/scusumors' ) );
12511260
*/
12521261
setReadOnly( ns, 'scusumpw', require( './../../../ext/base/scusumpw' ) );
12531262

1263+
/**
1264+
* @name sdiff
1265+
* @memberof ns
1266+
* @readonly
1267+
* @type {Function}
1268+
* @see {@link module:@stdlib/blas/ext/base/sdiff}
1269+
*/
1270+
setReadOnly( ns, 'sdiff', require( './../../../ext/base/sdiff' ) );
1271+
12541272
/**
12551273
* @name sdsapxsum
12561274
* @memberof ns
@@ -1620,6 +1638,15 @@ setReadOnly( ns, 'zsum', require( './../../../ext/base/zsum' ) );
16201638
*/
16211639
setReadOnly( ns, 'zsumkbn', require( './../../../ext/base/zsumkbn' ) );
16221640

1641+
/**
1642+
* @name zunitspace
1643+
* @memberof ns
1644+
* @readonly
1645+
* @type {Function}
1646+
* @see {@link module:@stdlib/blas/ext/base/zunitspace}
1647+
*/
1648+
setReadOnly( ns, 'zunitspace', require( './../../../ext/base/zunitspace' ) );
1649+
16231650
/**
16241651
* @name zzeroTo
16251652
* @memberof ns

0 commit comments

Comments
 (0)