Skip to content

Commit a2a89e5

Browse files
committed
Auto-generated commit
1 parent 92c9704 commit a2a89e5

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-07-14)
7+
## Unreleased (2025-07-21)
88

99
<section class="features">
1010

@@ -143,9 +143,9 @@
143143

144144
### Closed Issues
145145

146-
A total of 5 issues were closed in this release:
146+
A total of 6 issues were closed in this release:
147147

148-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350)
148+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694)
149149

150150
</section>
151151

@@ -157,6 +157,7 @@ A total of 5 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`4baa837`](https://github.com/stdlib-js/stdlib/commit/4baa837fde6fbe176add7b35f1f95f2e3b476ac0) - **chore:** fix EditorConfig lint errors [(#7696)](https://github.com/stdlib-js/stdlib/pull/7696) _(by Satyajeet Chavan, Athan Reines)_
160161
- [`708320e`](https://github.com/stdlib-js/stdlib/commit/708320e43d505cd6f390bf6014d58cb5e092cbaf) - **docs:** update related packages sections [(#7647)](https://github.com/stdlib-js/stdlib/pull/7647) _(by stdlib-bot, Philipp Burckhardt)_
161162
- [`d27d963`](https://github.com/stdlib-js/stdlib/commit/d27d963735240594f5b51a460c68e31493370a4a) - **remove:** remove `utils/some-in-by` _(by Neeraj Pathak)_
162163
- [`edef1e2`](https://github.com/stdlib-js/stdlib/commit/edef1e298a551ed453c4edc3d769746baf5dbde1) - **chore:** minor clean-up _(by Philipp Burckhardt)_
@@ -217,14 +218,15 @@ A total of 5 issues were closed in this release:
217218

218219
### Contributors
219220

220-
A total of 8 people contributed to this release. Thank you to the following contributors:
221+
A total of 9 people contributed to this release. Thank you to the following contributors:
221222

222223
- Athan Reines
223224
- Gururaj Gurram
224225
- Jay Soni
225226
- Lokesh Ranjan
226227
- Neeraj Pathak
227228
- Philipp Burckhardt
229+
- Satyajeet Chavan
228230
- Uday Kakade
229231
- zhanggy
230232

merge/examples/index.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@ var out = merge( {}, target, source );
5353

5454
console.dir( out );
5555
/* =>
56-
{
57-
'a': 'beep',
58-
'b': 3.141592653589793,
59-
'c': {
60-
'c1': 'bap',
61-
'c2': false,
62-
'c3': {
63-
'c3a': [ 1, 2 ],
64-
'c3b': 5,
65-
'c3c': 'bop'
66-
},
67-
'c4': 1337,
68-
'c5': <Date>
69-
},
70-
'd': [ 4, 5, 6 ],
71-
'e': true
72-
}
56+
{
57+
'a': 'beep',
58+
'b': 3.141592653589793,
59+
'c': {
60+
'c1': 'bap',
61+
'c2': false,
62+
'c3': {
63+
'c3a': [ 1, 2 ],
64+
'c3b': 5,
65+
'c3c': 'bop'
66+
},
67+
'c4': 1337,
68+
'c5': <Date>
69+
},
70+
'd': [ 4, 5, 6 ],
71+
'e': true
72+
}
7373
*/

0 commit comments

Comments
 (0)