Skip to content

Commit

Permalink
0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
osexpert committed Aug 30, 2024
1 parent 90b89e7 commit 232026d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Company>osexpert</Company>
<PackageReleaseNotes>See https://github.com/osexpert/GuidPhantom/blob/master/CHANGELOG.md for details</PackageReleaseNotes>

<VersionPrefix>0.0.5</VersionPrefix>
<VersionPrefix>0.0.6</VersionPrefix>
<PackageTags>guid uuid</PackageTags>
<Description>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.</Description>

Expand Down
2 changes: 1 addition & 1 deletion Uuid_v7_v8mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nuget push.bat
Original file line number Diff line number Diff line change
@@ -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%

0 comments on commit 232026d

Please sign in to comment.