Skip to content

Commit 4280ada

Browse files
committed
Auto-generated commit
1 parent 758f977 commit 4280ada

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
- [`3a6a913`](https://github.com/stdlib-js/stdlib/commit/3a6a913fe41d3ffbbb4f73837fc6aa8396cdccce) - **bench:** update random value generation [(#6377)](https://github.com/stdlib-js/stdlib/pull/6377) _(by Harsh)_
@@ -44,12 +57,13 @@
4457

4558
### Contributors
4659

47-
A total of 4 people contributed to this release. Thank you to the following contributors:
60+
A total of 5 people contributed to this release. Thank you to the following contributors:
4861

4962
- Athan Reines
5063
- Harsh
5164
- Karan Anand
5265
- Philipp Burckhardt
66+
- PrathamBhamare
5367

5468
</section>
5569

CONTRIBUTORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Jordan Gallivan <[email protected]>
7575
Joris Labie <[email protected]>
7676
Justin Dennison <[email protected]>
7777
Justyn Shelby <[email protected]>
78-
Karan Anand <[email protected].com>
78+
Karan Anand <anandkarancompsci@gmail.com>
7979
Karthik Prakash <[email protected]>
8080
Kaushikgtm <[email protected]>
8181
Kavyansh-Bagdi <[email protected]>
@@ -95,9 +95,12 @@ Mohammad Bin Aftab <[email protected]>
9595
Mohammad Kaif <[email protected]>
9696
Momtchil Momtchev <[email protected]>
9797
Muhammad Haris <[email protected]>
98+
Muhammad Taaha Tariq <[email protected]>
99+
Muhmmad Saad <[email protected]>
98100
Naresh Jagadeesan <[email protected]>
99101
Naveen Kumar <[email protected]>
100102
Neeraj Pathak <[email protected]>
103+
NirvedMishra <[email protected]>
101104
Nishant Shinde <[email protected]>
102105
Nishchay Rajput <[email protected]>
103106
Nithin Katta <[email protected]>
@@ -126,6 +129,7 @@ Rishav <[email protected]>
126129
Rishav Tarway <[email protected]>
127130
Robert Gislason <[email protected]>
128131
Roman Stetsyk <[email protected]>
132+
129133
Rutam Kathale <[email protected]>
130134
Ruthwik Chikoti <[email protected]>
131135
Ryan Seal <[email protected]>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ var opts = {
132132
};
133133
var x = discreteUniform( 100, 0, 100, opts );
134134

135-
logEachMap( 'log10(%0.4f) = %0.4f', x, log10 );
135+
logEachMap( 'log10(%d) = %0.4f', x, log10 );
136136
```
137137

138138
</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( 'log10(%0.4f) = %0.4f', x, log10 );
30+
logEachMap( 'log10(%d) = %0.4f', x, log10 );

0 commit comments

Comments
 (0)