Skip to content

Commit c954771

Browse files
committed
Auto-generated commit
1 parent fcd8add commit c954771

File tree

5 files changed

+32
-5
lines changed

5 files changed

+32
-5
lines changed

.github/.keepalive

-1
This file was deleted.

.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

+16-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,27 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-02-02)
7+
## Unreleased (2025-02-22)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#5347](https://github.com/stdlib-js/stdlib/issues/5347)
16+
17+
</section>
18+
19+
<!-- /.issues -->
820

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`35df6a5`](https://github.com/stdlib-js/stdlib/commit/35df6a54d1f8f054205b51e5f4e6700cb7fb2ed5) - **chore:** fix C lint errors [(#5354)](https://github.com/stdlib-js/stdlib/pull/5354) _(by GK Bishnoi)_
1528
- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
1629

1730
</details>
@@ -24,8 +37,9 @@
2437

2538
### Contributors
2639

27-
A total of 1 person contributed to this release. Thank you to this contributor:
40+
A total of 2 people contributed to this release. Thank you to the following contributors:
2841

42+
- GK Bishnoi
2943
- Philipp Burckhardt
3044

3145
</section>

CONTRIBUTORS

+11-1
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ Dominik Moritz <[email protected]>
3535
Dorrin Sotoudeh <[email protected]>
3636
EuniceSim142 <[email protected]>
3737
Frank Kovacs <[email protected]>
38+
GK Bishnoi <[email protected]>
39+
3840
Golden Kumar <[email protected]>
3941
Gunj Joshi <[email protected]>
40-
Gururaj Gurram <[email protected]>
42+
Gururaj Gurram <[email protected]>
43+
4144
4245
Harshita Kalani <[email protected]>
4346
Hridyanshu <[email protected]>
@@ -63,6 +66,7 @@ Marcus Fantham <[email protected]>
6366
Matt Cochrane <[email protected]>
6467
Mihir Pandit <[email protected]>
6568
Milan Raj <[email protected]>
69+
Mohammad Bin Aftab <[email protected]>
6670
Mohammad Kaif <[email protected]>
6771
Momtchil Momtchev <[email protected]>
6872
Muhammad Haris <[email protected]>
@@ -90,6 +94,7 @@ Rejoan Sardar <[email protected]>
9094
Ricky Reusser <[email protected]>
9195
Ridam Garg <[email protected]>
9296
97+
Rishav Tarway <[email protected]>
9398
Robert Gislason <[email protected]>
9499
Roman Stetsyk <[email protected]>
95100
Rutam Kathale <[email protected]>
@@ -100,6 +105,7 @@ Sai Srikar Dumpeti <[email protected]>
100105
Sarthak Paandey <[email protected]>
101106
Saurabh Singh <[email protected]>
102107
Seyyed Parsa Neshaei <[email protected]>
108+
Shabareesh Shetty <[email protected]>
103109
Shashank Shekhar Singh <[email protected]>
104110
Shivam Ahir <[email protected]>
105111
Shraddheya Shendre <[email protected]>
@@ -110,6 +116,7 @@ Snehil Shah <[email protected]>
110116
Soumajit Chatterjee <[email protected]>
111117
Spandan Barve <[email protected]>
112118
Stephannie Jiménez Gacha <[email protected]>
119+
Suhaib Ilahi <[email protected]>
113120
Suraj Kumar <[email protected]>
114121
Tirtadwipa Manunggal <[email protected]>
115122
Tudor Pagu <[email protected]>
@@ -124,6 +131,9 @@ Vivek Maurya <[email protected]>
124131
Xiaochuan Ye <[email protected]>
125132
Yaswanth Kosuru <[email protected]>
126133
Yernar Yergaziyev <[email protected]>
134+
Yuvi Mittal <[email protected]>
135+
ekambains <[email protected]>
127136
olenkabilonizhka <[email protected]>
137+
pranav-1720 <[email protected]>
128138
129139

examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <inttypes.h>
2323

2424
int main( void ) {
25-
double x[] = { 1.0, 3.14, 0.0, -0.0, 3.14e-308, 3.14e308, 1.0/0.0, 0.0/0.0 };
25+
const double x[] = { 1.0, 3.14, 0.0, -0.0, 3.14e-308, 1.79e308, 1.0/0.0, 0.0/0.0 };
2626
int32_t exp;
2727
double y;
2828
int i;

0 commit comments

Comments
 (0)