Skip to content

Commit 7d1f1b2

Browse files
committed
Auto-generated commit
1 parent c78682e commit 7d1f1b2

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-09-02)
7+
## Unreleased (2025-09-03)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`18b2372`](https://github.com/stdlib-js/stdlib/commit/18b2372476178bcaa6bd7ddc69396f0e87dc93f2) - add missing exports to namespaces
1314
- [`0bc9823`](https://github.com/stdlib-js/stdlib/commit/0bc98238e0d5e4991912848ef6069a753343eaa1) - add missing exports to `utils` namespace
1415
- [`9818fa6`](https://github.com/stdlib-js/stdlib/commit/9818fa6dd8c90e045a147bfd1ba83cb1f693d17b) - update namespace TypeScript declarations [(#3259)](https://github.com/stdlib-js/stdlib/pull/3259)
1516
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190)
@@ -158,6 +159,7 @@ A total of 8 issues were closed in this release:
158159

159160
<details>
160161

162+
- [`18b2372`](https://github.com/stdlib-js/stdlib/commit/18b2372476178bcaa6bd7ddc69396f0e87dc93f2) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
161163
- [`57b828d`](https://github.com/stdlib-js/stdlib/commit/57b828d10a9b20f3003482557132723a79d27c66) - **chore:** fix JavaScript lint errors [(#8003)](https://github.com/stdlib-js/stdlib/pull/8003) _(by DUDHAT HEMIL PRAVINKUMAR, Athan Reines)_
162164
- [`0bc9823`](https://github.com/stdlib-js/stdlib/commit/0bc98238e0d5e4991912848ef6069a753343eaa1) - **feat:** add missing exports to `utils` namespace _(by Philipp Burckhardt)_
163165
- [`8a6dbd7`](https://github.com/stdlib-js/stdlib/commit/8a6dbd7bf692bcd9ce166a7370eda0a7410da3b0) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_

async/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,15 @@ setReadOnly( ns, 'noneByAsync', require( './../../async/none-by' ) );
234234
*/
235235
setReadOnly( ns, 'noneByRightAsync', require( './../../async/none-by-right' ) );
236236

237+
/**
238+
* @name parallel
239+
* @memberof ns
240+
* @readonly
241+
* @type {Function}
242+
* @see {@link module:@stdlib/utils/async/parallel}
243+
*/
244+
setReadOnly( ns, 'parallel', require( './../../async/parallel' ) );
245+
237246
/**
238247
* @name reduceAsync
239248
* @memberof ns

0 commit comments

Comments
 (0)