Skip to content

Commit eb3463a

Browse files
committed
Auto-generated commit
1 parent 0d94245 commit eb3463a

File tree

14 files changed

+56
-13
lines changed

14 files changed

+56
-13
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ indent_style = tab
8686
[*.{f,f.txt}]
8787
indent_style = space
8888
indent_size = 2
89-
insert_final_newline = false
9089

9190
# Set properties for shell files:
9291
[*.{sh,sh.txt}]

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,7 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191+
192+
# Cursor #
193+
##########
194+
.cursorignore

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-02-16)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`3ae3c5f`](https://github.com/stdlib-js/stdlib/commit/3ae3c5f79f267ecc17041b6b10d8c543f5f0686c) - **refactor:** update paths _(by Gururaj Gurram)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Gururaj Gurram
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.2">
640

741
## 0.2.2 (2024-07-28)

CONTRIBUTORS

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,20 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
2929
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
30+
Dev Goel <135586571+corsairier@users.noreply.github.com>
3031
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
3132
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3233
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3334
Dominik Moritz <domoritz@gmail.com>
3435
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
3536
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
3637
Frank Kovacs <fran70kk@gmail.com>
38+
GK Bishnoi <gkishan1kyt@gmail.com>
39+
Gaurav <gaurav70380@gmail.com>
3740
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
3841
Gunj Joshi <gunjjoshi8372@gmail.com>
39-
Gururaj Gurram <143020143+gururaj1512@users.noreply.github.com>
42+
Gururaj Gurram <gururajgurram1512@gmail.com>
43+
Harsh <149176984+hrshya@users.noreply.github.com>
4044
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
4145
Harshita Kalani <harshitakalani02@gmail.com>
4246
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
@@ -62,6 +66,7 @@ Marcus Fantham <mfantham@users.noreply.github.com>
6266
Matt Cochrane <matthew.cochrane.eng@gmail.com>
6367
Mihir Pandit <129577900+MSP20086@users.noreply.github.com>
6468
Milan Raj <rajsite@users.noreply.github.com>
69+
Mohammad Bin Aftab <48010758+MohammadBinAftab@users.noreply.github.com>
6570
Mohammad Kaif <mdkaifprofession@gmail.com>
6671
Momtchil Momtchev <momtchil@momtchev.com>
6772
Muhammad Haris <harriskhan047@outlook.com>
@@ -123,6 +128,8 @@ Vivek Maurya <vm8118134@gmail.com>
123128
Xiaochuan Ye <tap91624@gmail.com>
124129
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
125130
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
131+
ekambains <bainsinbusiness@gmail.com>
126132
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
133+
pranav-1720 <123018993+pranav-1720@users.noreply.github.com>
127134
rainn <88160429+AmCodesLame@users.noreply.github.com>
128135
rei2hu <reimu@reimu.ws>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var quinary4d = require( '@stdlib/array-base-quinary4d' );
7474
Applies a quinary callback to elements in five four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
7575

7676
```javascript
77-
var add = require( '@stdlib/math-base-ops-add5' );
77+
var add = require( '@stdlib/number-float64-base-add5' );
7878
var zeros4d = require( '@stdlib/array-base-zeros4d' );
7979

8080
var x = [ [ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] ] ];
@@ -116,7 +116,7 @@ The function accepts the following arguments:
116116
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
117117
var filled4dBy = require( '@stdlib/array-base-filled4d-by' );
118118
var zeros4d = require( '@stdlib/array-base-zeros4d' );
119-
var add = require( '@stdlib/math-base-ops-add5' );
119+
var add = require( '@stdlib/number-float64-base-add5' );
120120
var quinary4d = require( '@stdlib/array-base-quinary4d' );
121121

122122
var shape = [ 1, 3, 3, 3 ];

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var floor = require( '@stdlib/math-base-special-floor' );
2828
var filled4dBy = require( '@stdlib/array-base-filled4d-by' );
2929
var zeros4d = require( '@stdlib/array-base-zeros4d' );
3030
var numel = require( '@stdlib/ndarray-base-numel' );
31-
var add = require( '@stdlib/math-base-ops-add5' );
31+
var add = require( '@stdlib/number-float64-base-add5' );
3232
var pkg = require( './../package.json' ).name;
3333
var quinary4d = require( './../lib' );
3434

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ type Quinary<T, U, V, W, X, Y> = ( v1: T, v2: U, v3: V, v4: W, v5: X ) => Y;
4747
* @param fcn - quinary callback
4848
*
4949
* @example
50-
* var add = require( '@stdlib/math-base-ops-add5' );
50+
* var add = require( '@stdlib/number-float64-base-add5' );
5151
* var ones4d = require( '@stdlib/array-base-ones4d' );
5252
* var zeros4d = require( '@stdlib/array-base-zeros4d' );
5353
*

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
2222
var filled4dBy = require( '@stdlib/array-base-filled4d-by' );
2323
var zeros4d = require( '@stdlib/array-base-zeros4d' );
24-
var add = require( '@stdlib/math-base-ops-add5' );
24+
var add = require( '@stdlib/number-float64-base-add5' );
2525
var quinary4d = require( './../lib' );
2626

2727
var shape = [ 1, 3, 3, 3 ];

0 commit comments

Comments
 (0)