Skip to content

Releases: giacomocavalieri/prng

v3.0.2

19 Mar 08:08
85368da
Compare
Choose a tag to compare
  • 🐛 Fixed a bug in the fixed_size_dict function.

v3.0.1

19 Mar 08:02
6334be3
Compare
Choose a tag to compare
  • 💡 Drop use of reserved keywords
  • 💡 Replace deprecated gleam/map with gleam/dict

v3.0.0

08 Nov 21:43
5b4659c
Compare
Choose a tag to compare

This new release adds a load of useful functions to work with common data structures like Lists, Maps and Sets
In addition, there's now a function to also generate random Strings!

  • 💡 The prng/random module gains the set function.
  • 💡 The prng/random module gains the fixed_size_set function.
  • 💡 The prng/random module gains the dict function.
  • 💡 The prng/random module gains the fixed_size_dict function.
  • 💡 The prng/random module gains the bit_array function.
  • 💡 The prng/random module gains the fixed_size_string function.
  • 💡 The prng/random module gains the string function.
  • 💡 The prng/random module gains the list function.
  • 💥 The list function in the prng/random module has been renamed to
    fixed_size_list.
  • 💥 is for breaking changes
  • 💡 is for non breaking changes

Full Changelog: v2.0.0...v3.0.0

v2.0.0

25 Oct 19:08
91fff62
Compare
Choose a tag to compare
  • The prng/random documentation has received some slight improvements.
  • The prng/seed module gains the random function.
  • The sample function in the prng/random module has been renamed to
    random_sample.
  • The prng/random module gains a sample function that requires a seed as its
    second argument.