Skip to content

Commit da171d6

Browse files
committed
Auto-generated commit
1 parent e560e21 commit da171d6

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-06-03)
7+
## Unreleased (2025-06-06)
88

99
<section class="features">
1010

@@ -305,6 +305,9 @@
305305

306306
### Bug Fixes
307307

308+
- [`3f6c0ff`](https://github.com/stdlib-js/stdlib/commit/3f6c0ffd9568665b54d0547b0550b2c96505bed6) - address increment bug
309+
- [`4d29349`](https://github.com/stdlib-js/stdlib/commit/4d29349017e6d62d7f72aa0c3a86a24fdd83e86a) - address increment bug
310+
- [`d1f5820`](https://github.com/stdlib-js/stdlib/commit/d1f58208fc95174fcfce03f00df278a8190578de) - address increment bug
308311
- [`495669a`](https://github.com/stdlib-js/stdlib/commit/495669aaf5064ff0043a6ceab9216a3b8c1c84f1) - update assertion
309312
- [`a300862`](https://github.com/stdlib-js/stdlib/commit/a300862d4f05d4d8bd85f1e235db93ad5d35a767) - address increment bugs
310313
- [`fab9873`](https://github.com/stdlib-js/stdlib/commit/fab9873a907807195f2f6673b5b97f09e383bd69) - address index bug
@@ -429,6 +432,9 @@ A total of 17 issues were closed in this release:
429432

430433
<details>
431434

435+
- [`3f6c0ff`](https://github.com/stdlib-js/stdlib/commit/3f6c0ffd9568665b54d0547b0550b2c96505bed6) - **fix:** address increment bug _(by Athan Reines)_
436+
- [`4d29349`](https://github.com/stdlib-js/stdlib/commit/4d29349017e6d62d7f72aa0c3a86a24fdd83e86a) - **fix:** address increment bug _(by Athan Reines)_
437+
- [`d1f5820`](https://github.com/stdlib-js/stdlib/commit/d1f58208fc95174fcfce03f00df278a8190578de) - **fix:** address increment bug _(by Athan Reines)_
432438
- [`9a2b61d`](https://github.com/stdlib-js/stdlib/commit/9a2b61d04186d607367371e9ef345df179516692) - **docs:** update namespace table of contents [(#7187)](https://github.com/stdlib-js/stdlib/pull/7187) _(by stdlib-bot)_
433439
- [`495669a`](https://github.com/stdlib-js/stdlib/commit/495669aaf5064ff0043a6ceab9216a3b8c1c84f1) - **fix:** update assertion _(by Athan Reines)_
434440
- [`67e9602`](https://github.com/stdlib-js/stdlib/commit/67e9602131f6e714d98de70ce6809cd9d327b02f) - **feat:** add `someBy` to namespace _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Frank Kovacs <fran70kk@gmail.com>
5353
GK Bishnoi <gkishan1kyt@gmail.com>
5454
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
5555
Gaurav <gaurav70380@gmail.com>
56+
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
5657
Gautam sharma <gautamkrishnasharma1@gmail.com>
5758
Girish Garg <garggirish2020@gmail.com>
5859
Golden Kumar <103646877+AuenKr@users.noreply.github.com>

base/unary-reduce-strided1d/lib/10d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function unary10d( fcn, arrays, views, strides, isRowMajor, strategy, opts ) { /
237237
dv6.push( sv[6] - ( S5*sv[5] ) );
238238
dv7.push( sv[7] - ( S6*sv[6] ) );
239239
dv8.push( sv[8] - ( S7*sv[7] ) );
240-
dv8.push( sv[8] - ( S8*sv[8] ) );
240+
dv9.push( sv[9] - ( S8*sv[8] ) );
241241
}
242242
}
243243
// Resolve a list of pointers to the first indexed elements in the respective ndarrays:

base/unary-reduce-strided1d/lib/10d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ function unary10d( fcn, arrays, views, strides, isRowMajor, strategy, opts ) { /
242242
dv6.push( sv[6] - ( S5*sv[5] ) );
243243
dv7.push( sv[7] - ( S6*sv[6] ) );
244244
dv8.push( sv[8] - ( S7*sv[7] ) );
245-
dv8.push( sv[8] - ( S8*sv[8] ) );
245+
dv9.push( sv[9] - ( S8*sv[8] ) );
246246
}
247247
}
248248
// Resolve a list of pointers to the first indexed elements in the respective ndarrays:

base/unary-strided1d/lib/10d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ function unary10d( fcn, arrays, views, shape, stridesX, stridesY, isRowMajor, st
331331
dv6.push( sv[6] - ( S5*sv[5] ) );
332332
dv7.push( sv[7] - ( S6*sv[6] ) );
333333
dv8.push( sv[8] - ( S7*sv[7] ) );
334-
dv8.push( sv[8] - ( S8*sv[8] ) );
334+
dv9.push( sv[9] - ( S8*sv[8] ) );
335335
}
336336
}
337337
// Resolve a list of pointers to the first indexed elements in the respective ndarrays:

0 commit comments

Comments
 (0)