Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 12, 2025
1 parent 6351416 commit b9ddc3f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-26)
## Unreleased (2025-01-12)

<section class="features">

Expand Down Expand Up @@ -34,7 +34,8 @@ This release closes the following issue:

<details>

- [`40df378`](https://github.com/stdlib-js/stdlib/commit/40df378b1ed62d15394f97d834db3eea21fea4a0) - **feat:** add C implementation for `stats/base/dists/laplace/skewness` [(#4187)](https://github.com/stdlib-js/stdlib/pull/4187) _(by Vivek maurya, Philipp Burckhardt)_
- [`f3df15f`](https://github.com/stdlib-js/stdlib/commit/f3df15f118d563573f27d2d2b96e35b842f05a18) - **chore:** directly draw from the desired distribution instead of adding constants _(by Philipp Burckhardt)_
- [`40df378`](https://github.com/stdlib-js/stdlib/commit/40df378b1ed62d15394f97d834db3eea21fea4a0) - **feat:** add C implementation for `stats/base/dists/laplace/skewness` [(#4187)](https://github.com/stdlib-js/stdlib/pull/4187) _(by Vivek Maurya, Philipp Burckhardt)_
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_

</details>
Expand All @@ -50,7 +51,7 @@ This release closes the following issue:
A total of 2 people contributed to this release. Thank you to the following contributors:

- Philipp Burckhardt
- Vivek maurya
- Vivek Maurya

</section>

Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Daniel Killenberger <[email protected]>
Daniel Yu <[email protected]>
Debashis Maharana <[email protected]>
Desh Deepak Kant <[email protected]>
Dhruv Arvind Singh <[email protected]>
Divyansh Seth <[email protected]>
Dominic Lim <[email protected]>
Dominik Moritz <[email protected]>
Expand All @@ -49,6 +50,7 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Karan Anand <[email protected]>
Karthik Prakash <[email protected]>
Kohantika Nath <[email protected]>
Krishnendu Das <[email protected]>
Expand Down Expand Up @@ -117,7 +119,7 @@ UtkershBasnet <[email protected]>
Vaibhav Patel <[email protected]>
Varad Gupta <[email protected]>
Vinit Pandit <[email protected]>
Vivek maurya <[email protected].com>
Vivek Maurya <vm8118134@gmail.com>
Xiaochuan Ye <[email protected]>
Yaswanth Kosuru <[email protected]>
Yernar Yergaziyev <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2024 The Stdlib Authors.
Copyright (c) 2016-2025 The Stdlib Authors.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ See [LICENSE][stdlib-license].

## Copyright

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

</section>

Expand Down
2 changes: 1 addition & 1 deletion benchmark/c/benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static double benchmark( void ) {

for ( i = 0; i < 100; i++ ) {
mu[ i ] = random_uniform( -50.0, 50.0 );
b[ i ] = random_uniform( 0.0, 20.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
b[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
}

t = tic();
Expand Down

0 comments on commit b9ddc3f

Please sign in to comment.