Skip to content

Commit 206cda9

Browse files
committed
Auto-generated commit
1 parent 409e05f commit 206cda9

File tree

9 files changed

+111
-19
lines changed

9 files changed

+111
-19
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-12-09T02:33:39.834Z
1+
2025-06-23T00:37:12.475Z

.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/number/float64/base/to-binary-string) 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

CONTRIBUTORS

Lines changed: 98 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,35 @@
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 Jain <[email protected]>
713
Adarsh Palaskar <[email protected]>
814
Aditya Sapra <[email protected]>
915
Ahmed Atwa <[email protected]>
1016
Ahmed Kashkoush <[email protected]>
17+
Ahmed Khaled <[email protected]>
18+
Aksshay Balasubramanian <[email protected]>
1119
Aleksandr <[email protected]>
1220
Ali Salesi <[email protected]>
21+
AlyAbdelmoneim <[email protected]>
1322
Aman Bhansali <[email protected]>
23+
AmanBhadkariya <[email protected]>
24+
Amisha Chhajed <[email protected]>
1425
Amit Jimiwal <[email protected]>
26+
Annamalai Prabu <[email protected]>
27+
Anshu Kumar <[email protected]>
28+
Anshu Kumar <[email protected]>
1529
Anudeep Sanapala <[email protected]>
30+
Aryan Bhirud <[email protected]>
1631
Athan Reines <[email protected]>
1732
33+
Bhavishy Agrawal <[email protected]>
1834
Brendan Graetz <[email protected]>
1935
Bruno Fenzl <[email protected]>
2036
Bryan Elee <[email protected]>
@@ -24,19 +40,41 @@ Dan Rose <[email protected]>
2440
Daniel Killenberger <[email protected]>
2541
Daniel Yu <[email protected]>
2642
Debashis Maharana <[email protected]>
43+
Deep Trivedi <[email protected]>
44+
Deepak Singh <[email protected]>
45+
Desh Deepak Kant <[email protected]>
46+
47+
Dhanyabad behera <[email protected]>
48+
Dhruv Arvind Singh <[email protected]>
49+
Dhruvil Mehta <[email protected]>
50+
Dipjyoti Das <[email protected]>
51+
Divyansh Seth <[email protected]>
2752
Dominic Lim <[email protected]>
2853
Dominik Moritz <[email protected]>
2954
Dorrin Sotoudeh <[email protected]>
3055
EuniceSim142 <[email protected]>
3156
Frank Kovacs <[email protected]>
57+
GK Bishnoi <[email protected]>
58+
GURU PRASAD SHARMA <[email protected]>
59+
60+
Gautam Kaushik <[email protected]>
61+
Gautam sharma <[email protected]>
62+
Girish Garg <[email protected]>
3263
Golden Kumar <[email protected]>
3364
Gunj Joshi <[email protected]>
34-
Gururaj Gurram <[email protected]>
65+
Gururaj Gurram <[email protected]>
66+
Haroon Rasheed <[email protected]>
67+
3568
3669
Harshita Kalani <[email protected]>
70+
Hemang Choudhary <[email protected]>
71+
Hemant M Mehta <[email protected]>
3772
Hridyanshu <[email protected]>
3873
Jaimin Godhani <[email protected]>
74+
Jaison D Souza <[email protected]>
75+
Jalaj Kumar <[email protected]>
3976
James Gelok <[email protected]>
77+
4078
Jaysukh Makvana <[email protected]>
4179
Jenish Thapa <[email protected]>
4280
Jithin KS <[email protected]>
@@ -45,55 +83,88 @@ Joey Reed <[email protected]>
4583
Jordan Gallivan <[email protected]>
4684
Joris Labie <[email protected]>
4785
Justin Dennison <[email protected]>
86+
Justyn Shelby <[email protected]>
87+
Karan Anand <[email protected]>
88+
Karan Vasudevamurthy <[email protected]>
89+
Karan Yadav <[email protected]>
4890
Karthik Prakash <[email protected]>
49-
91+
Kaushikgtm <[email protected]>
92+
Kavyansh-Bagdi <[email protected]>
5093
Kohantika Nath <[email protected]>
94+
Krishnam Agarwal <[email protected]>
5195
Krishnendu Das <[email protected]>
5296
Kshitij-Dale <[email protected]>
53-
97+
Lalit Narayan Yadav <[email protected]>
98+
Lokesh Ranjan <[email protected]>
99+
Lovelin Dhoni J B <[email protected]>
100+
101+
Mahfuza Humayra Mohona <[email protected]>
54102
Manik Sharma <[email protected]>
55103
Manvith M <[email protected]>
56104
Marcus Fantham <[email protected]>
57105
Matt Cochrane <[email protected]>
58106
Mihir Pandit <[email protected]>
59107
Milan Raj <[email protected]>
108+
Mohammad Bin Aftab <[email protected]>
60109
Mohammad Kaif <[email protected]>
61110
Momtchil Momtchev <[email protected]>
62111
Muhammad Haris <[email protected]>
112+
Muhammad Taaha Tariq <[email protected]>
113+
Muhmmad Saad <[email protected]>
63114
Naresh Jagadeesan <[email protected]>
115+
Naveen Kumar <[email protected]>
64116
Neeraj Pathak <[email protected]>
117+
NirvedMishra <[email protected]>
65118
Nishant Shinde <[email protected]>
119+
Nishant singh <[email protected]>
120+
Nishchay Rajput <[email protected]>
66121
Nithin Katta <[email protected]>
67122
Nourhan Hasan <[email protected]>
68123
Ognjen Jevremović <[email protected]>
69124
Oneday12323 <[email protected]>
70125
Ori Miles <[email protected]>
71126
Philipp Burckhardt <[email protected]>
127+
Pierre Forstmann <[email protected]>
128+
Prajjwal Bajpai <[email protected]>
72129
Prajwal Kulkarni <[email protected]>
73-
Pranav Goswami <[email protected]>
74-
75-
130+
Pranav Goswami <[email protected]>
131+
Pranjal Jha <[email protected]>
132+
Prashant Kumar Yadav <[email protected]>
133+
PrathamBhamare <[email protected]>
134+
Pratik Singh <[email protected]>
76135
Pratyush Kumar Chouhan <[email protected]>
77-
136+
Pravesh Kunwar <[email protected]>
137+
Priyansh Prajapati <[email protected]>
78138
Priyanshu Agarwal <[email protected]>
139+
Pulkit Gupta <[email protected]>
79140
Pushpendra Chandravanshi <[email protected]>
141+
Rahul Kumar <[email protected]>
80142
Raunak Kumar Gupta <[email protected]>
81143
Rejoan Sardar <[email protected]>
82144
Ricky Reusser <[email protected]>
83145
Ridam Garg <[email protected]>
84146
147+
Rishav Tarway <[email protected]>
85148
Robert Gislason <[email protected]>
86149
Roman Stetsyk <[email protected]>
150+
87151
Rutam Kathale <[email protected]>
88152
Ruthwik Chikoti <[email protected]>
89153
Ryan Seal <[email protected]>
90154
Rylan Yang <[email protected]>
155+
SAHIL KUMAR <[email protected]>
156+
SHIVAM YADAV <[email protected]>
157+
Sachin Raj <[email protected]>
158+
Sahil Goyal <[email protected]>
159+
Sai Avinash <[email protected]>
91160
Sai Srikar Dumpeti <[email protected]>
161+
Sanchay Ketan Sinha <[email protected]>
92162
Sarthak Paandey <[email protected]>
93163
Saurabh Singh <[email protected]>
94164
Seyyed Parsa Neshaei <[email protected]>
165+
Shabareesh Shetty <[email protected]>
95166
Shashank Shekhar Singh <[email protected]>
96-
167+
Shivam Ahir <[email protected]>
97168
Shraddheya Shendre <[email protected]>
98169
Shubh Mehta <[email protected]>
99170
Shubham Mishra <[email protected]>
@@ -102,20 +173,38 @@ Snehil Shah <[email protected]>
102173
Soumajit Chatterjee <[email protected]>
103174
Spandan Barve <[email protected]>
104175
Stephannie Jiménez Gacha <[email protected]>
176+
Suhaib Ilahi <[email protected]>
105177
Suraj Kumar <[email protected]>
178+
Swapnil Hajare <[email protected]>
179+
Tanishq Ahuja <[email protected]>
106180
Tirtadwipa Manunggal <[email protected]>
107181
Tudor Pagu <[email protected]>
108182
Tufailahmed Bargir <[email protected]>
183+
Tushar Bhardwaj <[email protected]>
184+
Uday Kakade <[email protected]>
185+
Ujjwal Kirti <[email protected]>
109186
Utkarsh <http://[email protected]>
110187
Utkarsh Raj <[email protected]>
111188
UtkershBasnet <[email protected]>
112189
Vaibhav Patel <[email protected]>
190+
Vara Rahul Rajana <[email protected]>
113191
Varad Gupta <[email protected]>
114192
Vinit Pandit <[email protected]>
193+
Vivek Maurya <[email protected]>
115194
Xiaochuan Ye <[email protected]>
116195
Yaswanth Kosuru <[email protected]>
117196
Yernar Yergaziyev <[email protected]>
118-
197+
Yugal Kaushik <[email protected]>
198+
Yuvi Mittal <[email protected]>
199+
devshree-bhati <[email protected]>
200+
201+
ekambains <[email protected]>
202+
fadiothman22 <[email protected]>
203+
iraandrushko <[email protected]>
204+
lohithganni <[email protected]>
119205
olenkabilonizhka <[email protected]>
206+
pranav-1720 <[email protected]>
207+
rahulrangers <[email protected]>
120208
121209
210+

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
@@ -193,7 +193,7 @@ See [LICENSE][stdlib-license].
193193

194194
## Copyright
195195

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

198198
</section>
199199

0 commit comments

Comments
 (0)