Skip to content

Commit 1160bf1

Browse files
committed
Merge branch 'develop' into feat/lanczos-sum
2 parents 1de9166 + 0160d55 commit 1160bf1

File tree

4,065 files changed

+371093
-52538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,065 files changed

+371093
-52538
lines changed

.github/workflows/ossf_scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: "Run analysis"
7171
# Pin action to full length commit SHA
72-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
72+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
7373
with:
7474
results_file: results.sarif
7575
results_format: sarif

.github/workflows/scripts/run_tests_coverage

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,10 @@ compare_cov() {
144144
main() {
145145
start_heartbeat "${heartbeat_interval}"
146146

147-
# Only keep files which reside in package directories:
148-
changed=$(echo "${changed}" | tr ' ' '\n' | grep '^lib/node_modules/@stdlib') || true
147+
# Only keep files which reside in package directories, but exclude _tools:
148+
changed=$(echo "${changed}" | tr ' ' '\n' | \
149+
grep '^lib/node_modules/@stdlib' | \
150+
grep -v '^lib/node_modules/@stdlib/_tools') || true
149151

150152
# Find unique package directories:
151153
directories=$(echo "${changed}" | tr ' ' '\n' | sed -E 's/\/(benchmark|bin|data|docs|etc|examples|include|lib|scripts|src|test)(\/.*)?\/?$//' | uniq)

CONTRIBUTORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ AlyAbdelmoneim <[email protected]>
2222
Aman Bhansali <[email protected]>
2323
AmanBhadkariya <[email protected]>
2424
Amit Jimiwal <[email protected]>
25+
Annamalai Prabu <[email protected]>
2526
Anshu Kumar <[email protected]>
2627
Anshu Kumar <[email protected]>
2728
Anudeep Sanapala <[email protected]>
@@ -38,6 +39,7 @@ Daniel Killenberger <[email protected]>
3839
Daniel Yu <[email protected]>
3940
Debashis Maharana <[email protected]>
4041
Deep Trivedi <[email protected]>
42+
Deepak Singh <[email protected]>
4143
Desh Deepak Kant <[email protected]>
4244
4345
Dhanyabad behera <[email protected]>
@@ -53,6 +55,7 @@ Frank Kovacs <[email protected]>
5355
GK Bishnoi <[email protected]>
5456
GURU PRASAD SHARMA <[email protected]>
5557
58+
Gautam Kaushik <[email protected]>
5659
Gautam sharma <[email protected]>
5760
Girish Garg <[email protected]>
5861
Golden Kumar <[email protected]>
@@ -80,6 +83,7 @@ Joris Labie <[email protected]>
8083
Justin Dennison <[email protected]>
8184
Justyn Shelby <[email protected]>
8285
Karan Anand <[email protected]>
86+
Karan Vasudevamurthy <[email protected]>
8387
Karan Yadav <[email protected]>
8488
Karthik Prakash <[email protected]>
8589
Kaushikgtm <[email protected]>
@@ -117,6 +121,7 @@ Ognjen Jevremović <[email protected]>
117121
Oneday12323 <[email protected]>
118122
Ori Miles <[email protected]>
119123
Philipp Burckhardt <[email protected]>
124+
Pierre Forstmann <[email protected]>
120125
Prajjwal Bajpai <[email protected]>
121126
Prajwal Kulkarni <[email protected]>
122127
Pranav Goswami <[email protected]>
@@ -172,7 +177,9 @@ Tanishq Ahuja <[email protected]>
172177
Tirtadwipa Manunggal <[email protected]>
173178
Tudor Pagu <[email protected]>
174179
Tufailahmed Bargir <[email protected]>
180+
Tushar Bhardwaj <[email protected]>
175181
Uday Kakade <[email protected]>
182+
Ujjwal Kirti <[email protected]>
176183
Utkarsh <http://[email protected]>
177184
Utkarsh Raj <[email protected]>
178185
UtkershBasnet <[email protected]>

CORE_CONTRIBUTORS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ For information about the governance of the stdlib project, see [GOVERNANCE.md][
3232
- [headlessNode][muhammad-haris-github] - **Muhammad Haris** &lt;[[email protected]][muhammad-haris-email]&gt; (he/him)
3333
- [aman-095][aman-bhansali-github] - **Aman Bhansali** &lt;[[email protected]][aman-bhansali-email]&gt; (he/him)
3434
- [aayush0325][aayush-khanna-github] - **Aayush Khanna** &lt;[[email protected]][aayush-khanna-email]&gt; (he/him)
35+
- [anandkaranubc][karan-anand-github] - **Karan Anand** &lt;[[email protected]][karan-anand-email]&gt; (he/him)
3536

3637
<details>
3738
<summary>Emeriti</summary>
@@ -72,6 +73,10 @@ For information about the governance of the stdlib project, see [GOVERNANCE.md][
7273

7374
[aayush-khanna-email]: mailto:[email protected]
7475

76+
[karan-anand-github]: https://github.com/anandkaranubc
77+
78+
[karan-anand-email]: mailto:[email protected]
79+
7580
</section>
7681

7782
<!-- /.links -->

docs/contributing/moving_packages.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,8 @@ BREAKING CHANGE: remove `dmax`
262262
263263
To migrate, users should access the same symbol via the
264264
`@stdlib/stats/strided` namespace.
265+
266+
Ref: https://github.com/stdlib-js/stdlib/issues/4797
265267
```
266268

267269
### 8. Update paths using a global find-and-replace

docs/policies/domains.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ This document lists domain names which are officially affiliated with the projec
1515
List of active domains:
1616

1717
- [stdlib.io](https://stdlib.io): the domain of the website
18-
- [stdlib.blog](https://stdlib.blog): the domain of the development blog
18+
- [stdlib.blog](https://www.stdlib.blog): the domain of the development blog
1919

2020
## Idle
2121

2222
List of **currently** unused domains:
2323

2424
- [libstd.com](http://libstd.com): redirects to repository
2525
- [libstd.org](http://libstd.org): redirects to repository
26-
- [stdlib.ai](http://stdlib.ai): redirects to website
27-
- [stdlib.app](http://stdlib.app): ????
26+
- [stdlib.ai](http://www.stdlib.ai): redirects to website
27+
- [stdlib.app](http://www.stdlib.app): redirects to website
2828
- [stdlibjs.com](http://stdlibjs.com): redirects to website
2929
- [stdlib.co](http://stdlib.co): redirects to repository
3030
- [stdlibjs.co](http://stdlibjs.co): redirects to repository
@@ -38,6 +38,10 @@ List of **currently** unused domains:
3838
- [stdlibjs.studio](http://stdlibjs.studio): redirects to website
3939
- [stdlibjs.xyz](http://stdlibjs.xyz): redirects to website
4040
- [stdlibjs.org](http://stdlibjs.org): redirects to website
41+
- [stdlib.dev](http://www.stdlib.dev): redirects to repository
42+
- [stdlibjs.dev](http://www.stdlibjs.dev): redirects to repository
43+
- [stdlibjs.blog](https://www.stdlibjs.blog): redirects to development blog
44+
- [stdlibhq.com](http://www.stdlibhq.com): redirects to website
4145

4246
## Former
4347

etc/eslint/rules/spellcheck.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ rules[ '@cspell/spellchecker' ] = [ 'warn', {
115115
'tricube',
116116
'trigamma',
117117
'uncapitalize',
118-
'unregularized'
118+
'unregularized',
119+
'Fréchet'
119120
]
120121
}
121122
}];
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"pattern": "**/benchmark*.js",
3-
"bundle": "benchmark_bundle.js",
4-
"mount": "/",
5-
"html": "benchmarks.html",
6-
"title": "Benchmarks"
2+
"pattern": "**/benchmark*.js",
3+
"bundle": "benchmark_bundle.js",
4+
"mount": "/",
5+
"html": "benchmarks.html",
6+
"title": "Benchmarks"
77
}
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"tags": [
3-
"constant",
4-
"constructor",
2+
"tags": [
3+
"constant",
4+
"constructor",
55
"customfunction",
6-
"default",
7-
"example",
8-
"function",
9-
"license",
10-
"memberof",
11-
"module",
12-
"name",
13-
"namespace",
14-
"param",
15-
"private",
16-
"readonly",
17-
"returns",
18-
"see",
19-
"throws",
20-
"type"
21-
]
6+
"default",
7+
"example",
8+
"function",
9+
"license",
10+
"memberof",
11+
"module",
12+
"name",
13+
"namespace",
14+
"param",
15+
"private",
16+
"readonly",
17+
"returns",
18+
"see",
19+
"throws",
20+
"type"
21+
]
2222
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"limit": 5000,
3-
"remaining": 4823,
4-
"reset": 1454693201845
2+
"limit": 5000,
3+
"remaining": 4823,
4+
"reset": 1454693201845
55
}

0 commit comments

Comments
 (0)