Skip to content

Commit

Permalink
NuGet v6.0.6, revert conversation GUIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed May 1, 2024
1 parent 59baed8 commit 49d796e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Special thanks to the following people for their support and contributions to th
@DuAell @syntacs @zsolt777 @broms95 @Antwns @MartyIX @Jyck @Memphizzz @nirajgenius
@cee-sharp @jeverz @cbarraco @DenisBalan @Markonius @Ahmed310 @markashleybell
@thechosensausage @JVemon @eatyouroats @bendablegears @Laiteux @fisherman6v6 @wesoos
@YorVeX @tovich37 @sancheolz
@YorVeX @tovich37 @sancheolz @lunedis

If you'd like to contribute, please jump right into the source code and create a pull request, or, file an issue with your enhancement request.

Expand Down
2 changes: 1 addition & 1 deletion src/WatsonTcp/WatsonMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public byte[] PresharedKey
/// Indicates the conversation GUID of the message.
/// </summary>
[JsonPropertyName("convguid")]
public Guid ConversationGuid { get; set; } = default(Guid);
public Guid ConversationGuid { get; set; } = Guid.NewGuid();

/// <summary>
/// Sender GUID.
Expand Down
2 changes: 1 addition & 1 deletion src/WatsonTcp/WatsonTcp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>6.0.5</Version>
<Version>6.0.6</Version>
<Authors>Joel Christner</Authors>
<Company>Joel Christner</Company>
<Description>A simple C# async TCP server and client with integrated framing for reliable transmission and receipt of data</Description>
Expand Down

0 comments on commit 49d796e

Please sign in to comment.