diff --git a/CHANGELOG.md b/CHANGELOG.md index d357b5a..0a91eb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.0.6 +* Since it is difficult to choose correct number of counter bits: change to dynamic/variable counter: 12-18bits + ## 0.0.5 * Changed my mind on several things: * Remove rollover guard diff --git a/Directory.Build.props b/Directory.Build.props index 0ceaa03..d4583fe 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -21,7 +21,7 @@ osexpert See https://github.com/osexpert/GuidPhantom/blob/master/CHANGELOG.md for details - 0.0.5 + 0.0.6 guid uuid Yet another Guid library:-) Create Guid v1,v3,v5,v6,v7,v8MsSql,v8SHA256,v8SHA512,NEWSEQUENTIALID,XorGuid,NumericGuid,IncrementedGuid. Convert between v1 and v6. Convert between v7 and v8MsSql. Get Guid info. diff --git a/Uuid_v7_v8mssql.sql b/Uuid_v7_v8mssql.sql index 0fdb734..cd10eac 100644 --- a/Uuid_v7_v8mssql.sql +++ b/Uuid_v7_v8mssql.sql @@ -32,7 +32,7 @@ SELECT CRYPT_GEN_RANDOM(10) AS rand_10 GO --- uuid v7: time + 13bit random / counter + random +-- uuid v7: time + counter + random -- Not ordered in ms sql server if stored as uniqueidentifier. -- Based on https://github.com/osexpert/GuidPhantom/blob/main/GuidPhantom/GuidKit.cs -- Returns big endian array diff --git a/nuget push.bat b/nuget push.bat index 9c75c89..f8b2df1 100644 --- a/nuget push.bat +++ b/nuget push.bat @@ -1,4 +1,4 @@ REM set myKey= -set ver=0.0.5 +set ver=0.0.6 nuget push bin\Packages\Release\NuGet\GuidPhantom.%ver%.nupkg -src https://api.nuget.org/v3/index.json -ApiKey %myKey%