Skip to content

Commit 1f72f0d

Browse files
committed
Auto-generated commit
1 parent 5540aa4 commit 1f72f0d

12 files changed

+125
-26
lines changed

.editorconfig

+1-2
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}]
@@ -121,7 +120,7 @@ indent_style = tab
121120
[*.{md,md.txt}]
122121
indent_style = space
123122
indent_size = 4
124-
trim_trailing_whitespace = false
123+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
125124
126125
# Set properties for `usage.txt` files:
127126
[usage.txt]

.github/.keepalive

-1
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/discrete-uniform) of the main repository where we’ll review and provide feedback.
44

5-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
66

77
We look forward to receiving your contribution! :smiley:

.github/workflows/test_install.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

53-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
54+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5555

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

50-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
51+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5252

5353
# Define the job's steps:
5454
steps:

.gitignore

+4
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

+46
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-03-21)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#6213](https://github.com/stdlib-js/stdlib/issues/6213)
16+
17+
</section>
18+
19+
<!-- /.issues -->
20+
21+
<section class="commits">
22+
23+
### Commits
24+
25+
<details>
26+
27+
- [`9ecb767`](https://github.com/stdlib-js/stdlib/commit/9ecb7670623af1f28ffcb635d6fdf27a630e37e5) - **chore:** fix EditorConfig lint errors [(#6215)](https://github.com/stdlib-js/stdlib/pull/6215) _(by AlyAbdelmoneim)_
28+
29+
</details>
30+
31+
</section>
32+
33+
<!-- /.commits -->
34+
35+
<section class="contributors">
36+
37+
### Contributors
38+
39+
A total of 1 person contributed to this release. Thank you to this contributor:
40+
41+
- AlyAbdelmoneim
42+
43+
</section>
44+
45+
<!-- /.contributors -->
46+
47+
</section>
48+
49+
<!-- /.release -->
50+
551
<section class="release" id="v0.2.1">
652

753
## 0.2.1 (2024-02-25)

CONTRIBUTORS

+60-9
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,31 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aadish Jain <[email protected]>
56
Aayush Khanna <[email protected]>
7+
Abdelrahman Samir <[email protected]>
8+
Abdul Kaium <[email protected]>
9+
Abhay Punia <[email protected]>
610
Abhijit Raut <[email protected]>
11+
Abhishek Jain <[email protected]>
712
Adarsh Palaskar <[email protected]>
813
Aditya Sapra <[email protected]>
914
Ahmed Atwa <[email protected]>
1015
Ahmed Kashkoush <[email protected]>
16+
Ahmed Khaled <[email protected]>
17+
Aksshay Balasubramanian <[email protected]>
1118
Aleksandr <[email protected]>
1219
Ali Salesi <[email protected]>
20+
AlyAbdelmoneim <[email protected]>
1321
Aman Bhansali <[email protected]>
22+
AmanBhadkariya <[email protected]>
1423
Amit Jimiwal <[email protected]>
24+
Anshu Kumar <[email protected]>
25+
Anshu Kumar <[email protected]>
1526
Anudeep Sanapala <[email protected]>
1627
Athan Reines <[email protected]>
1728
29+
Bhavishy Agrawal <[email protected]>
1830
Brendan Graetz <[email protected]>
1931
Bruno Fenzl <[email protected]>
2032
Bryan Elee <[email protected]>
@@ -24,19 +36,35 @@ Dan Rose <[email protected]>
2436
Daniel Killenberger <[email protected]>
2537
Daniel Yu <[email protected]>
2638
Debashis Maharana <[email protected]>
39+
Deep Trivedi <[email protected]>
40+
Desh Deepak Kant <[email protected]>
41+
42+
Dhanyabad behera <[email protected]>
43+
Dhruv Arvind Singh <[email protected]>
44+
Dhruvil Mehta <[email protected]>
45+
Divyansh Seth <[email protected]>
2746
Dominic Lim <[email protected]>
2847
Dominik Moritz <[email protected]>
2948
Dorrin Sotoudeh <[email protected]>
3049
EuniceSim142 <[email protected]>
3150
Frank Kovacs <[email protected]>
51+
GK Bishnoi <[email protected]>
52+
53+
Gautam sharma <[email protected]>
3254
Golden Kumar <[email protected]>
3355
Gunj Joshi <[email protected]>
34-
Gururaj Gurram <[email protected]>
56+
Gururaj Gurram <[email protected]>
57+
Haroon Rasheed <[email protected]>
58+
3559
3660
Harshita Kalani <[email protected]>
61+
Hemant M Mehta <[email protected]>
3762
Hridyanshu <[email protected]>
3863
Jaimin Godhani <[email protected]>
64+
Jaison D Souza <[email protected]>
65+
Jalaj Kumar <[email protected]>
3966
James Gelok <[email protected]>
67+
4068
Jaysukh Makvana <[email protected]>
4169
Jenish Thapa <[email protected]>
4270
Jithin KS <[email protected]>
@@ -45,55 +73,69 @@ Joey Reed <[email protected]>
4573
Jordan Gallivan <[email protected]>
4674
Joris Labie <[email protected]>
4775
Justin Dennison <[email protected]>
76+
Justyn Shelby <[email protected]>
77+
Karan Anand <[email protected]>
4878
Karthik Prakash <[email protected]>
49-
Khaldon <kahmd1444@gmail.com>
79+
Kaushikgtm <[email protected].com>
5080
Kohantika Nath <[email protected]>
81+
Krishnam Agarwal <[email protected]>
5182
Krishnendu Das <[email protected]>
5283
Kshitij-Dale <[email protected]>
53-
84+
Lovelin Dhoni J B <[email protected]>
85+
5486
Manik Sharma <[email protected]>
5587
Manvith M <[email protected]>
5688
Marcus Fantham <[email protected]>
5789
Matt Cochrane <[email protected]>
5890
Mihir Pandit <[email protected]>
5991
Milan Raj <[email protected]>
92+
Mohammad Bin Aftab <[email protected]>
6093
Mohammad Kaif <[email protected]>
6194
Momtchil Momtchev <[email protected]>
6295
Muhammad Haris <[email protected]>
6396
Naresh Jagadeesan <[email protected]>
97+
Naveen Kumar <[email protected]>
6498
Neeraj Pathak <[email protected]>
6599
Nishant Shinde <[email protected]>
100+
Nishchay Rajput <[email protected]>
66101
Nithin Katta <[email protected]>
67102
Nourhan Hasan <[email protected]>
68103
Ognjen Jevremović <[email protected]>
69104
Oneday12323 <[email protected]>
70105
Ori Miles <[email protected]>
71106
Philipp Burckhardt <[email protected]>
72107
Prajwal Kulkarni <[email protected]>
73-
Pranav Goswami <[email protected]>
74-
75-
108+
Pranav Goswami <[email protected]>
109+
Pranjal Jha <[email protected]>
110+
Prashant Kumar Yadav <[email protected]>
111+
Pratik Singh <[email protected]>
76112
Pratyush Kumar Chouhan <[email protected]>
77-
113+
Priyansh Prajapati <[email protected]>
78114
Priyanshu Agarwal <[email protected]>
115+
Pulkit Gupta <[email protected]>
79116
Pushpendra Chandravanshi <[email protected]>
117+
Rahul Kumar <[email protected]>
80118
Raunak Kumar Gupta <[email protected]>
81119
Rejoan Sardar <[email protected]>
82120
Ricky Reusser <[email protected]>
83121
Ridam Garg <[email protected]>
84122
123+
Rishav Tarway <[email protected]>
85124
Robert Gislason <[email protected]>
86125
Roman Stetsyk <[email protected]>
87126
Rutam Kathale <[email protected]>
88127
Ruthwik Chikoti <[email protected]>
89128
Ryan Seal <[email protected]>
90129
Rylan Yang <[email protected]>
130+
SHIVAM YADAV <[email protected]>
91131
Sai Srikar Dumpeti <[email protected]>
132+
Sanchay Ketan Sinha <[email protected]>
92133
Sarthak Paandey <[email protected]>
93134
Saurabh Singh <[email protected]>
94135
Seyyed Parsa Neshaei <[email protected]>
136+
Shabareesh Shetty <[email protected]>
95137
Shashank Shekhar Singh <[email protected]>
96-
138+
Shivam Ahir <[email protected]>
97139
Shraddheya Shendre <[email protected]>
98140
Shubh Mehta <[email protected]>
99141
Shubham Mishra <[email protected]>
@@ -102,7 +144,9 @@ Snehil Shah <[email protected]>
102144
Soumajit Chatterjee <[email protected]>
103145
Spandan Barve <[email protected]>
104146
Stephannie Jiménez Gacha <[email protected]>
147+
Suhaib Ilahi <[email protected]>
105148
Suraj Kumar <[email protected]>
149+
Tanishq Ahuja <[email protected]>
106150
Tirtadwipa Manunggal <[email protected]>
107151
Tudor Pagu <[email protected]>
108152
Tufailahmed Bargir <[email protected]>
@@ -112,10 +156,17 @@ UtkershBasnet <[email protected]>
112156
Vaibhav Patel <[email protected]>
113157
Varad Gupta <[email protected]>
114158
Vinit Pandit <[email protected]>
159+
Vivek Maurya <[email protected]>
115160
Xiaochuan Ye <[email protected]>
116161
Yaswanth Kosuru <[email protected]>
117162
Yernar Yergaziyev <[email protected]>
118-
163+
Yugal Kaushik <[email protected]>
164+
Yuvi Mittal <[email protected]>
165+
166+
ekambains <[email protected]>
167+
fadiothman22 <[email protected]>
119168
olenkabilonizhka <[email protected]>
169+
pranav-1720 <[email protected]>
170+
rahulrangers <[email protected]>
120171
121172

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ See [LICENSE][stdlib-license].
608608

609609
## Copyright
610610

611-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
611+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
612612

613613
</section>
614614

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/defaults.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"objectMode": false,
3-
"encoding": null,
4-
"sep": "\n",
5-
"copy": true,
6-
"siter": 1e308
2+
"objectMode": false,
3+
"encoding": null,
4+
"sep": "\n",
5+
"copy": true,
6+
"siter": 1e308
77
}

0 commit comments

Comments
 (0)