Skip to content

Commit

Permalink
[Release] Version 0.4.0
Browse files Browse the repository at this point in the history
Changelog:
- Updated TwitchLib.EventSub.Core to the latest version ( fixes #12 )
- Changed Websocket URL from the beta URL to the new GA URL
  • Loading branch information
Syzuna authored May 9, 2023
2 parents cefbe89 + 45dd795 commit b1cae3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ You can also find a console app example for .NET 6 and for .NET Framework 4.8 in

| NuGet | | [![TwitchLib.EventSub.Websockets][1]][2] |
| :--------------- | ----: | :--------------------------------------------------------------------------- |
| Package Manager | `PM>` | `Install-Package TwitchLib.EventSub.Websockets -Version 0.3.0` |
| .NET CLI | `>` | `dotnet add package TwitchLib.EventSub.Websockets --version 0.3.0` |
| PackageReference | | `<PackageReference Include="TwitchLib.EventSub.Websockets" Version="0.3.0" />` |
| Paket CLI | `>` | `paket add TwitchLib.EventSub.Websockets --version 0.3.0` |
| Package Manager | `PM>` | `Install-Package TwitchLib.EventSub.Websockets -Version 0.4.0` |
| .NET CLI | `>` | `dotnet add package TwitchLib.EventSub.Websockets --version 0.4.0` |
| PackageReference | | `<PackageReference Include="TwitchLib.EventSub.Websockets" Version="0.4.0" />` |
| Paket CLI | `>` | `paket add TwitchLib.EventSub.Websockets --version 0.4.0` |

[1]: https://img.shields.io/nuget/v/TwitchLib.EventSub.Websockets.svg?label=TwitchLib.EventSub.Websockets
[2]: https://www.nuget.org/packages/TwitchLib.EventSub.Websockets
Expand Down
4 changes: 2 additions & 2 deletions TwitchLib.EventSub.Websockets/EventSubWebsocketClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public class EventSubWebsocketClient
DictionaryKeyPolicy = new SnakeCaseNamingPolicy()
};

private const string WEBSOCKET_URL = "wss://eventsub-beta.wss.twitch.tv/ws";
private const string WEBSOCKET_URL = "wss://eventsub.wss.twitch.tv/ws";

/// <summary>
/// Instantiates an EventSubWebsocketClient used to subscribe to EventSub notifications via Websockets.
Expand Down Expand Up @@ -593,4 +593,4 @@ internal void RaiseEvent(string eventName, object args = null)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<PackageId>TwitchLib.EventSub.Websockets</PackageId>
<Title>TwitchLib.EventSub.Websockets</Title>
<Authors>swiftyspiffy, Prom3theu5, Syzuna, LuckyNoS7evin</Authors>
<VersionPrefix>0.3.0</VersionPrefix>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<AssemblyVersion>0.3.0</AssemblyVersion>
<FileVersion>0.3.0</FileVersion>
<AssemblyVersion>0.4.0</AssemblyVersion>
<FileVersion>0.4.0</FileVersion>
<Description>EventSub Websockets (also known as EventSockets) Client Library</Description>
<PackageIconUrl>https://cdn.syzuna-programs.de/images/twitchlib.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/TwitchLib/TwitchLib.EventSub.Websockets</PackageProjectUrl>
Expand All @@ -17,7 +17,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright 2023</Copyright>
<PackageTags>twitch library events eventsub websockets eventsockets c# csharp netstandard2.0 netstandard2.1 net6.0 net7.0</PackageTags>
<PackageReleaseNotes>Updated TwitchLib.EventSub.Core for the latest SubscriptionType changes, Added Handlers for ShieldMode SubscriptionTypes, Added Handlers for Shoutout SubscriptionTypes</PackageReleaseNotes>
<PackageReleaseNotes>Updated TwitchLib.EventSub.Core for the latest SubscriptionType changes, Changed Websocket URL from Beta to new GA URL</PackageReleaseNotes>
<NeutralLanguage>en-US</NeutralLanguage>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
Expand All @@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="TwitchLib.EventSub.Core" Version="2.3.0" />
<PackageReference Include="TwitchLib.EventSub.Core" Version="2.3.1" />
<PackageReference Include="System.Text.Json" Version="7.0.1" />
</ItemGroup>

Expand Down

0 comments on commit b1cae3f

Please sign in to comment.