Skip to content

Commit de8606a

Browse files
committed
Auto-generated commit
1 parent f62178b commit de8606a

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-04-01)
7+
## Unreleased (2025-04-05)
88

99
<section class="reverts">
1010

@@ -16,12 +16,25 @@
1616

1717
<!-- /.reverts -->
1818

19+
<section class="issues">
20+
21+
### Closed Issues
22+
23+
This release closes the following issue:
24+
25+
[#6499](https://github.com/stdlib-js/stdlib/issues/6499)
26+
27+
</section>
28+
29+
<!-- /.issues -->
30+
1931
<section class="commits">
2032

2133
### Commits
2234

2335
<details>
2436

37+
- [`5c0b04d`](https://github.com/stdlib-js/stdlib/commit/5c0b04d1e4d0e03a7364541658bada5f20f8e50c) - **chore:** address commit comments for commit bb378ff (issue #6499) [(#6565)](https://github.com/stdlib-js/stdlib/pull/6565) _(by PrathamBhamare)_
2538
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_
2639
- [`bb378ff`](https://github.com/stdlib-js/stdlib/commit/bb378ffa3c07f4acce9504440d26db9d2d97e091) - **docs:** replace manual `for` loop in examples [(#6472)](https://github.com/stdlib-js/stdlib/pull/6472) _(by Harsh)_
2740
- [`2decebf`](https://github.com/stdlib-js/stdlib/commit/2decebfef3381b37b7c84ebe6c4e35792d685e1e) - **chore:** update package meta data [(#6447)](https://github.com/stdlib-js/stdlib/pull/6447) _(by stdlib-bot)_
@@ -45,12 +58,13 @@
4558

4659
### Contributors
4760

48-
A total of 4 people contributed to this release. Thank you to the following contributors:
61+
A total of 5 people contributed to this release. Thank you to the following contributors:
4962

5063
- Athan Reines
5164
- Harsh
5265
- Karan Anand
5366
- Philipp Burckhardt
67+
- PrathamBhamare
5468

5569
</section>
5670

CONTRIBUTORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
7575
Joris Labie <joris.labie1@gmail.com>
7676
Justin Dennison <justin1dennison@gmail.com>
7777
Justyn Shelby <96994781+ShelbyJustyn@users.noreply.github.com>
78-
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
78+
Karan Anand <anandkarancompsci@gmail.com>
7979
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
8080
Kaushikgtm <162317291+Kaushikgtm@users.noreply.github.com>
8181
Kavyansh-Bagdi <153486713+Kavyansh-Bagdi@users.noreply.github.com>
@@ -95,9 +95,12 @@ Mohammad Bin Aftab <48010758+MohammadBinAftab@users.noreply.github.com>
9595
Mohammad Kaif <mdkaifprofession@gmail.com>
9696
Momtchil Momtchev <momtchil@momtchev.com>
9797
Muhammad Haris <harriskhan047@outlook.com>
98+
Muhammad Taaha Tariq <166188821+Taaha-Tariq@users.noreply.github.com>
99+
Muhmmad Saad <106260977+saad-imran-dev@users.noreply.github.com>
98100
Naresh Jagadeesan <naresh.naresh000@gmail.com>
99101
Naveen Kumar <stupiddint@gmail.com>
100102
Neeraj Pathak <neerajrpathak710@gmail.com>
103+
NirvedMishra <139633597+NirvedMishra@users.noreply.github.com>
101104
Nishant Shinde <97207366+nishant-s7@users.noreply.github.com>
102105
Nishchay Rajput <121144841+NishchayRajput@users.noreply.github.com>
103106
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
@@ -126,6 +129,7 @@ Rishav <115060907+rishav2404@users.noreply.github.com>
126129
Rishav Tarway <rishavtarway@gmail.com>
127130
Robert Gislason <gztown2216@yahoo.com>
128131
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
132+
Rupa <102663541+Rupa-Rd@users.noreply.github.com>
129133
Rutam Kathale <138517416+performant23@users.noreply.github.com>
130134
Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
131135
Ryan Seal <splrk@users.noreply.github.com>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ var opts = {
129129
};
130130
var x = discreteUniform( 100, 0, 100, opts );
131131

132-
logEachMap( 'log2(%0.4f) = %0.4f', x, log2 );
132+
logEachMap( 'log2(%d) = %0.4f', x, log2 );
133133
```
134134

135135
</section>

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ var opts = {
2727
};
2828
var x = discreteUniform( 100, 0, 100, opts );
2929

30-
logEachMap( 'log2(%0.4f) = %0.4f', x, log2 );
30+
logEachMap( 'log2(%d) = %0.4f', x, log2 );

0 commit comments

Comments
 (0)