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 Oct 19, 2024
1 parent 75a4726 commit 6446671
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 4 deletions.
52 changes: 50 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,71 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-29)
## Unreleased (2024-10-19)

<section class="packages">

### Packages

<section class="package" id="random-shuffle-unreleased">

#### [@stdlib/random/shuffle](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/shuffle)

<details>

<section class="bug-fixes">

##### Bug Fixes

- [`93560b9`](https://github.com/stdlib-js/stdlib/commit/93560b988c750b47e68cf5a789cc5e9d74b8e2d8) - ensure correct seed validation [(#3007)](https://github.com/stdlib-js/stdlib/pull/3007)

</section>

<!-- /.bug-fixes -->

<section class="issues">

##### Closed Issues

This release closes the following issue:

[#2952](https://github.com/stdlib-js/stdlib/issues/2952)

</section>

<!-- /.issues -->

</details>

</section>

<!-- /.package -->

</section>

<!-- /.packages -->

<section class="issues">

### Closed Issues

This release closes the following issue:

[#2952](https://github.com/stdlib-js/stdlib/issues/2952)

</section>

<!-- /.issues -->

<section class="contributors">

### Contributors

A total of 3 people contributed to this release. Thank you to the following contributors:
A total of 4 people contributed to this release. Thank you to the following contributors:

- Jenish Thapa
- Philipp Burckhardt
- RISHAV
- Tirtadwipa Manunggal

</section>
Expand All @@ -34,6 +81,7 @@ A total of 3 people contributed to this release. Thank you to the following cont

<details>

- [`93560b9`](https://github.com/stdlib-js/stdlib/commit/93560b988c750b47e68cf5a789cc5e9d74b8e2d8) - **fix:** ensure correct seed validation [(#3007)](https://github.com/stdlib-js/stdlib/pull/3007) _(by RISHAV)_
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
- [`aad48ea`](https://github.com/stdlib-js/stdlib/commit/aad48eab1f19217854f4ffbfaed2a8be664b0f47) - **chore:** resolve lint errors _(by Philipp Burckhardt)_
- [`62bb1e0`](https://github.com/stdlib-js/stdlib/commit/62bb1e0759f54abf61b84bb48ebf74a97128f779) - **docs:** improve examples of `random/array` namespace _(by Tirtadwipa Manunggal, Philipp Burckhardt)_
Expand Down
5 changes: 4 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Contributors listed in alphabetical order.

Aayush Khanna <[email protected].com>
Aayush Khanna <aayushiitbhu23@gmail.com>
Adarsh Palaskar <[email protected]>
Aditya Sapra <[email protected]>
AgPriyanshu18 <[email protected]>
Expand All @@ -28,6 +28,7 @@ EuniceSim142 <[email protected]>
Frank Kovacs <[email protected]>
Golden Kumar <[email protected]>
Gunj Joshi <[email protected]>
Gururaj Gurram <[email protected]>
HarshaNP <[email protected]>
Harshita Kalani <[email protected]>
Hridyanshu <[email protected]>
Expand All @@ -44,6 +45,7 @@ Justin Dennison <[email protected]>
Kaif Mohd <[email protected]>
Karthik Prakash <[email protected]>
Khaldon <[email protected]>
Kohantika Nath <[email protected]>
Krishnendu Das <[email protected]>
Lovelin <[email protected]>
Manik Sharma <[email protected]>
Expand Down Expand Up @@ -94,6 +96,7 @@ Tudor Pagu <[email protected]>
Tufailahmed Bargir <[email protected]>
Utkarsh <http://[email protected]>
Utkarsh Raj <[email protected]>
UtkershBasnet <[email protected]>
Vaibhav Patel <[email protected]>
Varad Gupta <[email protected]>
Xiaochuan Ye <[email protected]>
Expand Down
3 changes: 2 additions & 1 deletion shuffle/lib/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var deepCopy = require( '@stdlib/utils/copy' );
var floor = require( '@stdlib/math/base/special/floor' );
var randu = require( './../../base/mt19937' ).factory;
var format = require( '@stdlib/string/format' );
var hasOwnProp = require( '@stdlib/assert/has-own-property' );
var defaults = require( './defaults.json' );
var validate = require( './validate.js' );

Expand Down Expand Up @@ -63,7 +64,7 @@ function factory( config ) {
throw err;
}
}
if ( config && config.seed ) {
if ( config && hasOwnProp( config, 'seed' ) ) {
rand = randu({
'seed': config.seed
});
Expand Down

0 comments on commit 6446671

Please sign in to comment.