Not sure if this is the right place to post this but sqids-dotnet v2 has just been released which added support for all integral numeric types in .NET (e.g. int, long, etc.) — previously we only supported int.
This resulted in an API breaking change where the SqidsEncoder class now requires the user to specify a type argument upon instantiation; so, all three code snippets on the website need to be updated:
- var sqids = new SqidsEncoder(...
+ var sqids = new SqidsEncoder<int>(...
Not sure if this is the right place to post this but sqids-dotnet v2 has just been released which added support for all integral numeric types in .NET (e.g.
int
,long
, etc.) — previously we only supportedint
. This resulted in an API breaking change where theSqidsEncoder
class now requires the user to specify a type argument upon instantiation; so, all three code snippets on the website need to be updated: