- Fixed typo and punctuations
- Switched default letter case for generators from uppercase to lowercase
- Added optimized code examples of Base36 encoding and decoding
- Added bit layout guideline
- Made minor improvements
- Textual representation: 26-digit Base32 -> 25-digit Base36
- Field structure: {
timestamp
: 44 bits,counter
: 28 bits,per_sec_random
: 24 bits,per_gen_random
: 32 bits } -> {timestamp
: 48 bits,counter_hi
: 24 bits,counter_lo
: 24 bits,entropy
: 32 bits } - Timestamp epoch: 2020-01-01 00:00:00.000 UTC -> 1970-01-01 00:00:00.000 UTC
- Counter overflow and clock rollback handling guidance
- Applied CC BY 4.0 license
- Fixed typo
- Initial stable release