IdGen v2.1 Release Notes

Release Date: 2020-02-19 // about 4 years ago
  • ๐Ÿ”„ Changes:

    • ๐Ÿ‘ Support for NetStandard 1.1+
    • ๐Ÿ”ง Moved AppConfig stuff to separate IDGen.Configuration package
    • ID now implements IEquatable
    • ๐Ÿ›  Fixed some ArgumentOutOfRangeExceptions from the IdGenerator's ctor messages
    • ๐Ÿ‘€ Fixed bug (see #18) where internal timer was started only on first use instead of on instantiation. Thanks @stuart-beattie!
    • ๐Ÿ”จ Minor internal cleanup / refactoring

    ๐Ÿ’ฅ Breaking changes:

    If you're using the IdGenerator.GetFromConfig(...) method make sure you check the README. The changes aren't big, but breaking nonetheless. How to fix:

    • ๐Ÿ”ง Install IdGen.Configuration package
    • ๐Ÿ”„ Change the configsection type from:
      ๐Ÿ”ง IdGen.Configuration.IdGeneratorsSection, IdGen
      to:
      ๐Ÿ”ง IdGen.Configuration.IdGeneratorsSection, IdGen.Configuration
    • โž• Add a using IdGen.Configuration
    • ๐Ÿ”„ Change IdGenerator.GetFromConfig(...) to AppConfigFactory.GetFromConfig(...)