Skip to content

Commit 13d05ff

Browse files
committed
Auto-generated commit
1 parent df573ca commit 13d05ff

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 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 (2024-12-11)
7+
## Unreleased (2024-12-14)
88

99
<section class="features">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`2825b42`](https://github.com/stdlib-js/stdlib/commit/2825b42e8cd7483d15dfed1c6b389bfcb86d7ca0) - **docs:** update related packages sections [(#3898)](https://github.com/stdlib-js/stdlib/pull/3898) _(by stdlib-bot)_
3738
- [`143b370`](https://github.com/stdlib-js/stdlib/commit/143b37022fe8b96b30a0b79466e310380ddd2628) - **feat:** add `array/base/unary4d-by` [(#3220)](https://github.com/stdlib-js/stdlib/pull/3220) _(by Abhijit Raut, Athan Reines)_
3839

3940
</details>

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ UtkershBasnet <[email protected]>
112112
Vaibhav Patel <[email protected]>
113113
Varad Gupta <[email protected]>
114114
Vinit Pandit <[email protected]>
115+
Vivek maurya <[email protected]>
115116
Xiaochuan Ye <[email protected]>
116117
Yaswanth Kosuru <[email protected]>
117118
Yernar Yergaziyev <[email protected]>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,16 @@ var cnt = context.count;
141141

142142
```javascript
143143
var abs = require( '@stdlib/math-base-special-abs' );
144-
144+
145145
function accessor() {
146146
// No-op...
147147
}
148-
148+
149149
var x = [ [ [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] ] ];
150150
var y = [ [ [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ] ] ];
151-
151+
152152
var shape = [ 1, 1, 2, 2 ];
153-
153+
154154
unary4dBy( [ x, y ], shape, abs, accessor );
155155
// y => [ [ [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ] ] ]
156156
```

0 commit comments

Comments
 (0)