Skip to content

Commit 701cbaf

Browse files
committed
Auto-generated commit
1 parent b4bdf97 commit 701cbaf

File tree

10 files changed

+156
-30
lines changed

10 files changed

+156
-30
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-01T02:12:53.971Z
1+
2025-03-24T01:03:38.828Z

.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/constants/float64) 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: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,36 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-01)
7+
## Unreleased (2025-03-24)
88

99
<section class="packages">
1010

1111
### Packages
1212

13+
<section class="package" id="constants-float64-eulergamma-unreleased">
14+
15+
#### [@stdlib/constants/float64/eulergamma](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/eulergamma)
16+
17+
<details>
18+
19+
<section class="issues">
20+
21+
##### Closed Issues
22+
23+
This release closes the following issue:
24+
25+
[#6222](https://github.com/stdlib-js/stdlib/issues/6222)
26+
27+
</section>
28+
29+
<!-- /.issues -->
30+
31+
</details>
32+
33+
</section>
34+
35+
<!-- /.package -->
36+
1337
<section class="package" id="constants-float64-max-safe-nth-double-factorial-unreleased">
1438

1539
#### [@stdlib/constants/float64/max-safe-nth-double-factorial](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/max-safe-nth-double-factorial)
@@ -32,6 +56,28 @@
3256

3357
<!-- /.package -->
3458

59+
<section class="package" id="constants-float64-max-safe-nth-tribonacci-unreleased">
60+
61+
#### [@stdlib/constants/float64/max-safe-nth-tribonacci](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/max-safe-nth-tribonacci)
62+
63+
<details>
64+
65+
<section class="features">
66+
67+
##### Features
68+
69+
- [`27e0f3c`](https://github.com/stdlib-js/stdlib/commit/27e0f3c432b142bcef3e679670802947b9ad16ca) - add `constants/float64/max-safe-nth-tribonacci` [(#3317)](https://github.com/stdlib-js/stdlib/pull/3317)
70+
71+
</section>
72+
73+
<!-- /.features -->
74+
75+
</details>
76+
77+
</section>
78+
79+
<!-- /.package -->
80+
3581
<section class="package" id="constants-float64-num-high-word-significand-bits-unreleased">
3682

3783
#### [@stdlib/constants/float64/num-high-word-significand-bits](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/num-high-word-significand-bits)
@@ -58,14 +104,28 @@
58104

59105
<!-- /.packages -->
60106

107+
<section class="issues">
108+
109+
### Closed Issues
110+
111+
This release closes the following issue:
112+
113+
[#6222](https://github.com/stdlib-js/stdlib/issues/6222)
114+
115+
</section>
116+
117+
<!-- /.issues -->
118+
61119
<section class="contributors">
62120

63121
### Contributors
64122

65-
A total of 2 people contributed to this release. Thank you to the following contributors:
123+
A total of 4 people contributed to this release. Thank you to the following contributors:
66124

67125
- Athan Reines
126+
- Gautam sharma
68127
- Gunj Joshi
128+
- Philipp Burckhardt
69129

70130
</section>
71131

@@ -77,6 +137,14 @@ A total of 2 people contributed to this release. Thank you to the following cont
77137

78138
<details>
79139

140+
- [`0901e47`](https://github.com/stdlib-js/stdlib/commit/0901e47081951f23dde4aaf458bf4e09588e030e) - **docs:** add missing period _(by Athan Reines)_
141+
- [`f4bf6e6`](https://github.com/stdlib-js/stdlib/commit/f4bf6e691a0617ac2ffa97514a20f23b62b5ccce) - **chore:** use consistent naming in `constants/float64/eulergamma` [(#6228)](https://github.com/stdlib-js/stdlib/pull/6228) _(by Gautam sharma)_
142+
- [`14706e4`](https://github.com/stdlib-js/stdlib/commit/14706e4baccbf3b827e12cae163d7b98a96b0fa8) - **docs:** update related packages sections [(#4445)](https://github.com/stdlib-js/stdlib/pull/4445) _(by stdlib-bot)_
143+
- [`c322b66`](https://github.com/stdlib-js/stdlib/commit/c322b6647751b73a9d0fe12bf5665e8e2243d4ca) - **docs:** update related packages sections [(#4070)](https://github.com/stdlib-js/stdlib/pull/4070) _(by stdlib-bot, Philipp Burckhardt)_
144+
- [`b8c41df`](https://github.com/stdlib-js/stdlib/commit/b8c41df78cd2cdc9cd3c3c6b223759d32f4f6e14) - **docs:** update related packages sections [(#3915)](https://github.com/stdlib-js/stdlib/pull/3915) _(by stdlib-bot)_
145+
- [`11d30d5`](https://github.com/stdlib-js/stdlib/commit/11d30d555880163ecca9b5aa49624acf8855ca3f) - **docs:** update examples _(by Athan Reines)_
146+
- [`7e8187a`](https://github.com/stdlib-js/stdlib/commit/7e8187a766886c2fb9cdc356cf781f0a1802172c) - **docs:** update related packages sections [(#3368)](https://github.com/stdlib-js/stdlib/pull/3368) _(by stdlib-bot)_
147+
- [`27e0f3c`](https://github.com/stdlib-js/stdlib/commit/27e0f3c432b142bcef3e679670802947b9ad16ca) - **feat:** add `constants/float64/max-safe-nth-tribonacci` [(#3317)](https://github.com/stdlib-js/stdlib/pull/3317) _(by Gunj Joshi, Athan Reines)_
80148
- [`d0ebce3`](https://github.com/stdlib-js/stdlib/commit/d0ebce3a1ed53532f2bee61096fa08400f534437) - **feat:** add `constants/float64/max-safe-nth-double-factorial` [(#2966)](https://github.com/stdlib-js/stdlib/pull/2966) _(by Gunj Joshi, Athan Reines)_
81149
- [`51787c8`](https://github.com/stdlib-js/stdlib/commit/51787c84fc5805a0144c2596ad8ac631470458b5) - **feat:** add `constants/float64/num-high-word-significand-bits` [(#2889)](https://github.com/stdlib-js/stdlib/pull/2889) _(by Gunj Joshi, Athan Reines)_
82150

CONTRIBUTORS

Lines changed: 73 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,32 @@
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]>
9-
AgPriyanshu18 <[email protected]>
15+
Ahmed Atwa <[email protected]>
16+
Ahmed Kashkoush <[email protected]>
17+
Ahmed Khaled <[email protected]>
18+
Aksshay Balasubramanian <[email protected]>
1019
Aleksandr <[email protected]>
1120
Ali Salesi <[email protected]>
21+
AlyAbdelmoneim <[email protected]>
1222
Aman Bhansali <[email protected]>
23+
AmanBhadkariya <[email protected]>
1324
Amit Jimiwal <[email protected]>
25+
Anshu Kumar <[email protected]>
26+
Anshu Kumar <[email protected]>
1427
Anudeep Sanapala <[email protected]>
1528
Athan Reines <[email protected]>
1629
30+
Bhavishy Agrawal <[email protected]>
1731
Brendan Graetz <[email protected]>
1832
Bruno Fenzl <[email protected]>
1933
Bryan Elee <[email protected]>
@@ -23,19 +37,35 @@ Dan Rose <[email protected]>
2337
Daniel Killenberger <[email protected]>
2438
Daniel Yu <[email protected]>
2539
Debashis Maharana <[email protected]>
40+
Deep Trivedi <[email protected]>
41+
Desh Deepak Kant <[email protected]>
42+
43+
Dhanyabad behera <[email protected]>
44+
Dhruv Arvind Singh <[email protected]>
45+
Dhruvil Mehta <[email protected]>
46+
Divyansh Seth <[email protected]>
2647
Dominic Lim <[email protected]>
2748
Dominik Moritz <[email protected]>
2849
Dorrin Sotoudeh <[email protected]>
2950
EuniceSim142 <[email protected]>
3051
Frank Kovacs <[email protected]>
52+
GK Bishnoi <[email protected]>
53+
54+
Gautam sharma <[email protected]>
3155
Golden Kumar <[email protected]>
3256
Gunj Joshi <[email protected]>
33-
Gururaj Gurram <[email protected]>
57+
Gururaj Gurram <[email protected]>
58+
Haroon Rasheed <[email protected]>
59+
3460
3561
Harshita Kalani <[email protected]>
62+
Hemant M Mehta <[email protected]>
3663
Hridyanshu <[email protected]>
3764
Jaimin Godhani <[email protected]>
65+
Jaison D Souza <[email protected]>
66+
Jalaj Kumar <[email protected]>
3867
James Gelok <[email protected]>
68+
3969
Jaysukh Makvana <[email protected]>
4070
Jenish Thapa <[email protected]>
4171
Jithin KS <[email protected]>
@@ -44,52 +74,70 @@ Joey Reed <[email protected]>
4474
Jordan Gallivan <[email protected]>
4575
Joris Labie <[email protected]>
4676
Justin Dennison <[email protected]>
77+
Justyn Shelby <[email protected]>
78+
Karan Anand <[email protected]>
4779
Karthik Prakash <[email protected]>
48-
Khaldon <kahmd1444@gmail.com>
80+
Kaushikgtm <[email protected].com>
4981
Kohantika Nath <[email protected]>
82+
Krishnam Agarwal <[email protected]>
5083
Krishnendu Das <[email protected]>
5184
Kshitij-Dale <[email protected]>
52-
85+
Lovelin Dhoni J B <[email protected]>
86+
5387
Manik Sharma <[email protected]>
88+
Manvith M <[email protected]>
5489
Marcus Fantham <[email protected]>
5590
Matt Cochrane <[email protected]>
5691
Mihir Pandit <[email protected]>
5792
Milan Raj <[email protected]>
93+
Mohammad Bin Aftab <[email protected]>
5894
Mohammad Kaif <[email protected]>
5995
Momtchil Momtchev <[email protected]>
6096
Muhammad Haris <[email protected]>
6197
Naresh Jagadeesan <[email protected]>
98+
Naveen Kumar <[email protected]>
6299
Neeraj Pathak <[email protected]>
63-
NightKnight <[email protected]>
100+
Nishant Shinde <[email protected]>
101+
Nishchay Rajput <[email protected]>
64102
Nithin Katta <[email protected]>
65103
Nourhan Hasan <[email protected]>
66104
Ognjen Jevremović <[email protected]>
67105
Oneday12323 <[email protected]>
106+
Ori Miles <[email protected]>
68107
Philipp Burckhardt <[email protected]>
108+
Prajjwal Bajpai <[email protected]>
69109
Prajwal Kulkarni <[email protected]>
70-
Pranav Goswami <[email protected]>
71-
72-
110+
Pranav Goswami <[email protected]>
111+
Pranjal Jha <[email protected]>
112+
Prashant Kumar Yadav <[email protected]>
113+
Pratik Singh <[email protected]>
73114
Pratyush Kumar Chouhan <[email protected]>
74-
115+
Priyansh Prajapati <[email protected]>
116+
Priyanshu Agarwal <[email protected]>
117+
Pulkit Gupta <[email protected]>
75118
Pushpendra Chandravanshi <[email protected]>
76-
RISHAV <115060907+rishav2404@users.noreply.github.com>
119+
Rahul Kumar <132570066+rahulptl165@users.noreply.github.com>
77120
Raunak Kumar Gupta <[email protected]>
78121
Rejoan Sardar <[email protected]>
79122
Ricky Reusser <[email protected]>
80123
Ridam Garg <[email protected]>
124+
125+
Rishav Tarway <[email protected]>
81126
Robert Gislason <[email protected]>
82127
Roman Stetsyk <[email protected]>
83-
128+
Rutam Kathale <[email protected]>
84129
Ruthwik Chikoti <[email protected]>
85130
Ryan Seal <[email protected]>
86131
Rylan Yang <[email protected]>
132+
SHIVAM YADAV <[email protected]>
87133
Sai Srikar Dumpeti <[email protected]>
88-
SarthakPaandey <[email protected]>
134+
Sanchay Ketan Sinha <[email protected]>
135+
Sarthak Paandey <[email protected]>
89136
Saurabh Singh <[email protected]>
90137
Seyyed Parsa Neshaei <[email protected]>
138+
Shabareesh Shetty <[email protected]>
91139
Shashank Shekhar Singh <[email protected]>
92-
140+
Shivam Ahir <[email protected]>
93141
Shraddheya Shendre <[email protected]>
94142
Shubh Mehta <[email protected]>
95143
Shubham Mishra <[email protected]>
@@ -98,7 +146,9 @@ Snehil Shah <[email protected]>
98146
Soumajit Chatterjee <[email protected]>
99147
Spandan Barve <[email protected]>
100148
Stephannie Jiménez Gacha <[email protected]>
101-
Suraj kumar <[email protected]>
149+
Suhaib Ilahi <[email protected]>
150+
Suraj Kumar <[email protected]>
151+
Tanishq Ahuja <[email protected]>
102152
Tirtadwipa Manunggal <[email protected]>
103153
Tudor Pagu <[email protected]>
104154
Tufailahmed Bargir <[email protected]>
@@ -108,12 +158,17 @@ UtkershBasnet <[email protected]>
108158
Vaibhav Patel <[email protected]>
109159
Varad Gupta <[email protected]>
110160
Vinit Pandit <[email protected]>
161+
Vivek Maurya <[email protected]>
111162
Xiaochuan Ye <[email protected]>
163+
Yaswanth Kosuru <[email protected]>
112164
Yernar Yergaziyev <[email protected]>
113-
114-
nishant-s7 <[email protected]>
165+
Yugal Kaushik <[email protected]>
166+
Yuvi Mittal <[email protected]>
167+
168+
ekambains <[email protected]>
169+
fadiothman22 <[email protected]>
115170
olenkabilonizhka <[email protected]>
116-
orimiles5 <[email protected]>
171+
pranav-1720 <[email protected]>
172+
rahulrangers <[email protected]>
117173
118174
119-

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

200200
## Copyright
201201

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

204204
</section>
205205

0 commit comments

Comments
 (0)