Skip to content

Commit ac9019e

Browse files
committed
Auto-generated commit
1 parent 96fc98c commit ac9019e

File tree

13 files changed

+144
-28
lines changed

13 files changed

+144
-28
lines changed

.editorconfig

Lines changed: 1 addition & 2 deletions
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

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

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
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/utils/async/count-by) 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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-09)
7+
## Unreleased (2025-09-06)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`6bb3c64`](https://github.com/stdlib-js/stdlib/commit/6bb3c64c915bb33715e5256fa8073e46b9a4d443) - **docs:** update examples in TSDoc comments in `utils/async` for doctesting _(by Philipp Burckhardt)_
16+
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1517
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
1618

1719
</details>

CONTRIBUTORS

Lines changed: 121 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,41 +2,90 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aadish Jain <[email protected]>
6+
Aarya Balwadkar <[email protected]>
57
Aayush Khanna <[email protected]>
8+
Abdelrahman Samir <[email protected]>
9+
Abdul Kaium <[email protected]>
10+
Abhay Punia <[email protected]>
611
Abhijit Raut <[email protected]>
12+
Abhishek G <[email protected]>
13+
Abhishek Jain <[email protected]>
714
Adarsh Palaskar <[email protected]>
815
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
917
Ahmed Atwa <[email protected]>
1018
Ahmed Kashkoush <[email protected]>
19+
Ahmed Khaled <[email protected]>
20+
Aksshay Balasubramanian <[email protected]>
1121
Aleksandr <[email protected]>
1222
Ali Salesi <[email protected]>
23+
AlyAbdelmoneim <[email protected]>
1324
Aman Bhansali <[email protected]>
25+
AmanBhadkariya <[email protected]>
26+
Amisha Chhajed <[email protected]>
1427
Amit Jimiwal <[email protected]>
28+
Anmol Sah <[email protected]>
29+
Annamalai Prabu <[email protected]>
30+
Anshu Kumar <[email protected]>
31+
Anshu Kumar <[email protected]>
1532
Anudeep Sanapala <[email protected]>
33+
Arihant Pal <[email protected]>
34+
Aryan Bhirud <[email protected]>
35+
1636
Athan Reines <[email protected]>
37+
Atharva Patil <[email protected]>
1738
39+
Bhavishy Agrawal <[email protected]>
1840
Brendan Graetz <[email protected]>
1941
Bruno Fenzl <[email protected]>
2042
Bryan Elee <[email protected]>
2143
Chinmay Joshi <[email protected]>
2244
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
2346
47+
Daniel Hernandez Gomez <[email protected]>
2448
Daniel Killenberger <[email protected]>
2549
Daniel Yu <[email protected]>
2650
Debashis Maharana <[email protected]>
51+
Deep Trivedi <[email protected]>
52+
Deepak Singh <[email protected]>
53+
Deepak Singh <[email protected]>
54+
Desh Deepak Kant <[email protected]>
55+
56+
Dhanyabad behera <[email protected]>
57+
Dhruv Arvind Singh <[email protected]>
58+
Dhruvil Mehta <[email protected]>
59+
Dipjyoti Das <[email protected]>
60+
Divyansh Seth <[email protected]>
2761
Dominic Lim <[email protected]>
2862
Dominik Moritz <[email protected]>
2963
Dorrin Sotoudeh <[email protected]>
3064
EuniceSim142 <[email protected]>
3165
Frank Kovacs <[email protected]>
66+
GK Bishnoi <[email protected]>
67+
GURU PRASAD SHARMA <[email protected]>
68+
69+
Gautam Kaushik <[email protected]>
70+
Gautam sharma <[email protected]>
71+
72+
Girish Garg <[email protected]>
3273
Golden Kumar <[email protected]>
3374
Gunj Joshi <[email protected]>
34-
Gururaj Gurram <[email protected]>
75+
Gururaj Gurram <[email protected]>
76+
Harishchandra Reddy <[email protected]>
77+
Haroon Rasheed <[email protected]>
78+
3579
3680
Harshita Kalani <[email protected]>
81+
Hemang Choudhary <[email protected]>
82+
Hemant M Mehta <[email protected]>
3783
Hridyanshu <[email protected]>
3884
Jaimin Godhani <[email protected]>
85+
Jaison D Souza <[email protected]>
86+
Jalaj Kumar <[email protected]>
3987
James Gelok <[email protected]>
88+
4089
Jaysukh Makvana <[email protected]>
4190
Jenish Thapa <[email protected]>
4291
Jithin KS <[email protected]>
@@ -45,77 +94,140 @@ Joey Reed <[email protected]>
4594
Jordan Gallivan <[email protected]>
4695
Joris Labie <[email protected]>
4796
Justin Dennison <[email protected]>
97+
Justyn Shelby <[email protected]>
98+
Karan Anand <[email protected]>
99+
Karan Vasudevamurthy <[email protected]>
100+
Karan Yadav <[email protected]>
48101
Karthik Prakash <[email protected]>
49-
102+
Kaushikgtm <[email protected]>
103+
Kavyansh-Bagdi <[email protected]>
50104
Kohantika Nath <[email protected]>
105+
Krishnam Agarwal <[email protected]>
51106
Krishnendu Das <[email protected]>
52107
Kshitij-Dale <[email protected]>
53-
108+
Lalit Narayan Yadav <[email protected]>
109+
Lokesh Ranjan <[email protected]>
110+
Lovelin Dhoni J B <[email protected]>
111+
112+
Mahfuza Humayra Mohona <[email protected]>
54113
Manik Sharma <[email protected]>
55114
Manvith M <[email protected]>
56115
Marcus Fantham <[email protected]>
57116
Matt Cochrane <[email protected]>
58117
Mihir Pandit <[email protected]>
59118
Milan Raj <[email protected]>
119+
Mohammad Bin Aftab <[email protected]>
60120
Mohammad Kaif <[email protected]>
61121
Momtchil Momtchev <[email protected]>
62122
Muhammad Haris <[email protected]>
123+
Muhammad Taaha Tariq <[email protected]>
124+
Muhmmad Saad <[email protected]>
125+
NEEKUorAAYUSH <[email protected]>
126+
Nakul Krishnakumar <[email protected]>
63127
Naresh Jagadeesan <[email protected]>
128+
Naveen Kumar <[email protected]>
64129
Neeraj Pathak <[email protected]>
130+
NirvedMishra <[email protected]>
65131
Nishant Shinde <[email protected]>
132+
Nishant singh <[email protected]>
133+
Nishchay Rajput <[email protected]>
66134
Nithin Katta <[email protected]>
67135
Nourhan Hasan <[email protected]>
68136
Ognjen Jevremović <[email protected]>
69137
Oneday12323 <[email protected]>
70138
Ori Miles <[email protected]>
71139
Philipp Burckhardt <[email protected]>
140+
Pierre Forstmann <[email protected]>
141+
Pradyumn Prasad <[email protected]>
142+
Prajjwal Bajpai <[email protected]>
72143
Prajwal Kulkarni <[email protected]>
73-
Pranav Goswami <[email protected]>
74-
75-
144+
Pranav Goswami <[email protected]>
145+
Pranjal Jha <[email protected]>
146+
Prashant Kumar Yadav <[email protected]>
147+
PrathamBhamare <[email protected]>
148+
Pratik Singh <[email protected]>
76149
Pratyush Kumar Chouhan <[email protected]>
77-
150+
Pravesh Kunwar <[email protected]>
151+
Priyansh Prajapati <[email protected]>
78152
Priyanshu Agarwal <[email protected]>
153+
Pulkit Gupta <[email protected]>
79154
Pushpendra Chandravanshi <[email protected]>
155+
Rahul Kumar <[email protected]>
80156
Raunak Kumar Gupta <[email protected]>
81157
Rejoan Sardar <[email protected]>
82158
Ricky Reusser <[email protected]>
83159
Ridam Garg <[email protected]>
84160
161+
Rishav Tarway <[email protected]>
85162
Robert Gislason <[email protected]>
86163
Roman Stetsyk <[email protected]>
164+
87165
Rutam Kathale <[email protected]>
88166
Ruthwik Chikoti <[email protected]>
89167
Ryan Seal <[email protected]>
90168
Rylan Yang <[email protected]>
169+
SAHIL KUMAR <[email protected]>
170+
SAUJANYA MAGARDE <[email protected]>
171+
SHIVAM YADAV <[email protected]>
172+
Sachin Raj <[email protected]>
173+
Sahil Goyal <[email protected]>
174+
Sai Avinash <[email protected]>
91175
Sai Srikar Dumpeti <[email protected]>
176+
Sanchay Ketan Sinha <[email protected]>
92177
Sarthak Paandey <[email protected]>
178+
Satyajeet Chavan <[email protected]>
93179
Saurabh Singh <[email protected]>
94180
Seyyed Parsa Neshaei <[email protected]>
181+
Shabareesh Shetty <[email protected]>
95182
Shashank Shekhar Singh <[email protected]>
96-
183+
Shivam Ahir <[email protected]>
184+
97185
Shraddheya Shendre <[email protected]>
98186
Shubh Mehta <[email protected]>
99187
Shubham Mishra <[email protected]>
188+
Siddhesh waje <[email protected]>
100189
Sivam Das <[email protected]>
101190
Snehil Shah <[email protected]>
102191
Soumajit Chatterjee <[email protected]>
103192
Spandan Barve <[email protected]>
193+
Srinivas Batthula <[email protected]>
104194
Stephannie Jiménez Gacha <[email protected]>
195+
Suhaib Ilahi <[email protected]>
105196
Suraj Kumar <[email protected]>
197+
Swapnil Hajare <[email protected]>
198+
Tanishq Ahuja <[email protected]>
106199
Tirtadwipa Manunggal <[email protected]>
107200
Tudor Pagu <[email protected]>
108201
Tufailahmed Bargir <[email protected]>
202+
Tushar Bhardwaj <[email protected]>
203+
Uday Kakade <[email protected]>
204+
Ujjwal Kirti <[email protected]>
109205
Utkarsh <http://[email protected]>
110206
Utkarsh Raj <[email protected]>
111207
UtkershBasnet <[email protected]>
112208
Vaibhav Patel <[email protected]>
209+
Vansh Choudhary <[email protected]>
210+
Vara Rahul Rajana <[email protected]>
113211
Varad Gupta <[email protected]>
114212
Vinit Pandit <[email protected]>
213+
Vivek Maurya <[email protected]>
214+
Wendy Yuchen Sun <[email protected]>
115215
Xiaochuan Ye <[email protected]>
116216
Yaswanth Kosuru <[email protected]>
117217
Yernar Yergaziyev <[email protected]>
118-
218+
Yugal Kaushik <[email protected]>
219+
Yuvi Mittal <[email protected]>
220+
deepak427 <[email protected]>
221+
devshree-bhati <[email protected]>
222+
223+
ekambains <[email protected]>
224+
fadiothman22 <[email protected]>
225+
iraandrushko <[email protected]>
226+
227+
lohithganni <[email protected]>
119228
olenkabilonizhka <[email protected]>
229+
pranav-1720 <[email protected]>
230+
rahulrangers <[email protected]>
120231
121232
233+

NOTICE

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ See [LICENSE][stdlib-license].
450450

451451
## Copyright
452452

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

455455
</section>
456456

0 commit comments

Comments
 (0)