packages feed

crypto-rng-0.3.0.2: CHANGELOG.md

# crypto-rng-0.3.0.2 (2026-09-17)
* Fix a bug that made the source of random bytes repeat bytes it already
  returned.
* If the list of allowed chars is empty, `randomString` raises an error. It
  used to return a string of garbage that crashed the program on use.
* A value from `random` no longer keeps the internal buffer of random bytes
  alive until the value is evaluated.
* Add support for `random` >= 1.3.
* Drop support for GHC 8.8.

# crypto-rng-0.3.0.1 (2022-02-24)
* Improve performance with multiple capabilities.

# crypto-rng-0.3.0.0 (2022-02-21)
* Use the entropy package instead of DRBG.

# crypto-rng-0.2.0.1 (2022-02-16)
* Better selection strategy for picking generators from the pool.

# crypto-rng-0.2.0.0 (2022-02-16)
* Drop support for GHC < 8.8
* Fix a space leak in randomBytesIO.
* Use a buffered generator.
* Remove modulo bias from randomRIO.
* Improve performance of randomString.
* Add support for a pool of generators for less contention.

# crypto-rng-0.1.2.0 (2020-05-05)
* GHC-8.8 support (MonadFail) and ghc 8.10.1 support.

# crypto-rng-0.1.1.0 (2019-10-08)
* Added a 'MonadError' instance for 'CryptoRNGT'.

# crypto-rng-0.1.0.2 (2018-03-14)
* Dropped support for GHC 7.8 and 7.10.

# crypto-rng-0.1.0.1 (2017-01-18)
* Removed a redundant constraint that led to build failures with GHC 8.0.2.

# crypto-rng-0.1.0.0 (2016-12-06)
* First version. Released on an unsuspecting world.