Skip to content

Commit f527fbf

Browse files
committed
Auto-generated commit
1 parent b8448d1 commit f527fbf

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-11-07)
7+
## Unreleased (2025-11-10)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`dd86a9a`](https://github.com/stdlib-js/stdlib/commit/dd86a9a4d5b0613903a5a502416d250e6f3cba86) - add `dlinspace` to namespace
14+
- [`b187382`](https://github.com/stdlib-js/stdlib/commit/b18738234e698259d919d7ffccc25e5a8ab68c70) - add `blas/ext/base/dlinspace`
1315
- [`12636b6`](https://github.com/stdlib-js/stdlib/commit/12636b62433a9a59fefdb4a0b548ff26f94f6d3c) - update `blas/ext/base/ndarray` TypeScript declarations
1416
- [`3d39d59`](https://github.com/stdlib-js/stdlib/commit/3d39d59f9920911a00c2c438dfd49dee408edc67) - update `blas/ext/base` TypeScript declarations
1517
- [`567d262`](https://github.com/stdlib-js/stdlib/commit/567d262b3cdddaa38241d33d0f3f54616c1aa7be) - update `blas/ext/base/wasm` TypeScript declarations
@@ -380,6 +382,8 @@ A total of 42 issues were closed in this release:
380382

381383
<details>
382384

385+
- [`dd86a9a`](https://github.com/stdlib-js/stdlib/commit/dd86a9a4d5b0613903a5a502416d250e6f3cba86) - **feat:** add `dlinspace` to namespace _(by Athan Reines)_
386+
- [`b187382`](https://github.com/stdlib-js/stdlib/commit/b18738234e698259d919d7ffccc25e5a8ab68c70) - **feat:** add `blas/ext/base/dlinspace` _(by Athan Reines)_
383387
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
384388
- [`bb33be6`](https://github.com/stdlib-js/stdlib/commit/bb33be6522625aae9440ea4e9988a9b69c4b58ec) - **docs:** fix examples [(#8161)](https://github.com/stdlib-js/stdlib/pull/8161) _(by stdlib-bot)_
385389
- [`d94514b`](https://github.com/stdlib-js/stdlib/commit/d94514bc9418f5b42df6233204d5005d53af00ca) - **docs:** clean-up TSDoc declaration comments _(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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,15 @@ setReadOnly( ns, 'dindexOf', require( '@stdlib/blas-ext-base-dindex-of' ) );
198198
*/
199199
setReadOnly( ns, 'dlastIndexOf', require( '@stdlib/blas-ext-base-dlast-index-of' ) );
200200

201+
/**
202+
* @name dlinspace
203+
* @memberof ns
204+
* @readonly
205+
* @type {Function}
206+
* @see {@link module:@stdlib/blas/ext/base/dlinspace}
207+
*/
208+
setReadOnly( ns, 'dlinspace', require( '@stdlib/blas-ext-base-dlinspace' ) );
209+
201210
/**
202211
* @name dnanasum
203212
* @memberof ns

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"@stdlib/blas-ext-base-dfill": "^0.2.2",
5555
"@stdlib/blas-ext-base-dindex-of": "github:stdlib-js/blas-ext-base-dindex-of#main",
5656
"@stdlib/blas-ext-base-dlast-index-of": "github:stdlib-js/blas-ext-base-dlast-index-of#main",
57+
"@stdlib/blas-ext-base-dlinspace": "github:stdlib-js/blas-ext-base-dlinspace#main",
5758
"@stdlib/blas-ext-base-dnanasum": "^0.2.2",
5859
"@stdlib/blas-ext-base-dnanasumors": "^0.2.2",
5960
"@stdlib/blas-ext-base-dnancusumkbn": "github:stdlib-js/blas-ext-base-dnancusumkbn#main",

0 commit comments

Comments
 (0)