- Initial version.
- Add
cuidConfig()
for more customizability. - Example:
Function myCounter(int start) {
return () => start += 5;
}
final cc = cuidConfig(counter: myCounter(0));
final id = cc.gen();
- [BREAKING] remove
entropyLength
param fromcuid()
andcuidSecure()
- refactor code and bring it up to cuid2,js v2.2.0
- add more tests
- [POSSIBLE BREAKING CHANGE]
counter
parameter function is now of typeint Function()?
instead ofFunction?
- fix fingerprinting on web
- increase min SDK version from 2.12.0 to 2.14.0