Skip to content

Commit 08360f4

Browse files
committed
Auto-generated commit
1 parent 0af4330 commit 08360f4

5 files changed

Lines changed: 27 additions & 3 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`6d28870`](https://github.com/stdlib-js/stdlib/commit/6d288709c0687064b62303d447e2629dc26b93c2) - add `gcartesianPower` and `scartesianPower` to namespace
14+
- [`181b4cc`](https://github.com/stdlib-js/stdlib/commit/181b4cc56c3da41a434fadea64fd1fe48d3684cf) - add `blas/ext/base/gcartesian-power` [(#11926)](https://github.com/stdlib-js/stdlib/pull/11926)
1315
- [`ed858b1`](https://github.com/stdlib-js/stdlib/commit/ed858b109614dcd701ba2d7cb7ce8715a500814a) - add `blas/ext/base/scartesian-power` [(#11923)](https://github.com/stdlib-js/stdlib/pull/11923)
1416
- [`8238153`](https://github.com/stdlib-js/stdlib/commit/8238153ec0e75749592ea606bd1f09696a930581) - add `zwhere` to namespace
1517
- [`4cbd368`](https://github.com/stdlib-js/stdlib/commit/4cbd368e1c95b8277b1fc973ff894a0f70a08c44) - add `blas/ext/base/zwhere` [(#11846)](https://github.com/stdlib-js/stdlib/pull/11846)
@@ -196,6 +198,8 @@
196198

197199
<details>
198200

201+
- [`6d28870`](https://github.com/stdlib-js/stdlib/commit/6d288709c0687064b62303d447e2629dc26b93c2) - **feat:** add `gcartesianPower` and `scartesianPower` to namespace _(by Athan Reines)_
202+
- [`181b4cc`](https://github.com/stdlib-js/stdlib/commit/181b4cc56c3da41a434fadea64fd1fe48d3684cf) - **feat:** add `blas/ext/base/gcartesian-power` [(#11926)](https://github.com/stdlib-js/stdlib/pull/11926) _(by Muhammad Haris)_
199203
- [`afe8812`](https://github.com/stdlib-js/stdlib/commit/afe8812d245b6c040daf664b55f4a4d8642b7095) - **docs:** update namespace table of contents [(#11938)](https://github.com/stdlib-js/stdlib/pull/11938) _(by stdlib-bot)_
200204
- [`ed858b1`](https://github.com/stdlib-js/stdlib/commit/ed858b109614dcd701ba2d7cb7ce8715a500814a) - **feat:** add `blas/ext/base/scartesian-power` [(#11923)](https://github.com/stdlib-js/stdlib/pull/11923) _(by Muhammad Haris, Athan Reines)_
201205
- [`a3a5677`](https://github.com/stdlib-js/stdlib/commit/a3a5677b7bdb9957229fbc1ebd46a82c160c06d7) - **docs:** follow-up fixes [(#11925)](https://github.com/stdlib-js/stdlib/pull/11925) _(by Philipp Burckhardt)_

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
@@ -747,6 +747,15 @@ setReadOnly( ns, 'gapxsumpw', require( '@stdlib/blas-ext-base-gapxsumpw' ) );
747747
*/
748748
setReadOnly( ns, 'gasumpw', require( '@stdlib/blas-ext-base-gasumpw' ) );
749749

750+
/**
751+
* @name gcartesianPower
752+
* @memberof ns
753+
* @readonly
754+
* @type {Function}
755+
* @see {@link module:@stdlib/blas/ext/base/gcartesian-power}
756+
*/
757+
setReadOnly( ns, 'gcartesianPower', require( '@stdlib/blas-ext-base-gcartesian-power' ) );
758+
750759
/**
751760
* @name gcircshift
752761
* @memberof ns
@@ -1233,6 +1242,15 @@ setReadOnly( ns, 'sapxsumpw', require( '@stdlib/blas-ext-base-sapxsumpw' ) );
12331242
*/
12341243
setReadOnly( ns, 'sasumpw', require( '@stdlib/blas-ext-base-sasumpw' ) );
12351244

1245+
/**
1246+
* @name scartesianPower
1247+
* @memberof ns
1248+
* @readonly
1249+
* @type {Function}
1250+
* @see {@link module:@stdlib/blas/ext/base/scartesian-power}
1251+
*/
1252+
setReadOnly( ns, 'scartesianPower', require( '@stdlib/blas-ext-base-scartesian-power' ) );
1253+
12361254
/**
12371255
* @name scartesianSquare
12381256
* @memberof ns

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
"@stdlib/blas-ext-base-gapxsumors": "^0.3.1",
116116
"@stdlib/blas-ext-base-gapxsumpw": "^0.3.1",
117117
"@stdlib/blas-ext-base-gasumpw": "^0.3.1",
118+
"@stdlib/blas-ext-base-gcartesian-power": "github:stdlib-js/blas-ext-base-gcartesian-power#main",
118119
"@stdlib/blas-ext-base-gcircshift": "github:stdlib-js/blas-ext-base-gcircshift#main",
119120
"@stdlib/blas-ext-base-gconjoin": "github:stdlib-js/blas-ext-base-gconjoin#main",
120121
"@stdlib/blas-ext-base-gcusum": "^0.3.1",
@@ -169,6 +170,7 @@
169170
"@stdlib/blas-ext-base-sapxsumors": "^0.3.1",
170171
"@stdlib/blas-ext-base-sapxsumpw": "^0.3.1",
171172
"@stdlib/blas-ext-base-sasumpw": "^0.3.1",
173+
"@stdlib/blas-ext-base-scartesian-power": "github:stdlib-js/blas-ext-base-scartesian-power#main",
172174
"@stdlib/blas-ext-base-scartesian-square": "github:stdlib-js/blas-ext-base-scartesian-square#main",
173175
"@stdlib/blas-ext-base-scircshift": "github:stdlib-js/blas-ext-base-scircshift#main",
174176
"@stdlib/blas-ext-base-scusum": "^0.3.1",

0 commit comments

Comments
 (0)