Skip to content

Commit

Permalink
Version bump to 2.0.6: Bugfix introduced by 2.0.5, remove exposed `Cl…
Browse files Browse the repository at this point in the history
…ient.Instance.subscriptions`
  • Loading branch information
acupofjose committed Nov 30, 2021
1 parent adbf5f9 commit d24e719
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.6 - 2021-11-29

- Bugfix introduced by 2.0.5, remove exposed `Client.Instance.subscriptions`

## 2.0.5 - 2021-11-29

- Fixed test for (`Client: Join channels of format: {database}:{schema}:{table}:{col}=eq.{val}`)
Expand Down
2 changes: 1 addition & 1 deletion Realtime/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Client
/// Keys are of encoded value: `{database}{:schema?}{:table?}{:col.eq.:value?}`
/// Values are of type `Channel<T> where T : BaseModel, new()`;
/// </summary>
public Dictionary<string, Channel> subscriptions { get; set; }
private Dictionary<string, Channel> subscriptions { get; set; }

/// <summary>
/// Exposes all Realtime Channel Subscriptions for R/O public consumption
Expand Down
6 changes: 3 additions & 3 deletions Realtime/Realtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<Summary>Realtime-csharp is written as a client library for supabase/realtime.</Summary>
<PackageTags>supabase, realtime, phoenix</PackageTags>
<Title>realtime-csharp</Title>
<PackageVersion>2.0.5</PackageVersion>
<ReleaseVersion>2.0.5</ReleaseVersion>
<PackageVersion>2.0.6</PackageVersion>
<ReleaseVersion>2.0.6</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.0.5</VersionPrefix>
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.0.6</VersionPrefix>
<VersionSuffix Condition=" '$(VersionSuffix)' == '' ">
</VersionSuffix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
Expand Down
2 changes: 1 addition & 1 deletion RealtimeExample/RealtimeExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ReleaseVersion>2.0.5</ReleaseVersion>
<ReleaseVersion>2.0.6</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion RealtimeTests/RealtimeTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
<ReleaseVersion>2.0.5</ReleaseVersion>
<ReleaseVersion>2.0.6</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion realtime-csharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ Global
SolutionGuid = {5CFFD342-4DBD-4D79-BD1C-2183939DBFD4}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
version = 2.0.5
version = 2.0.6
EndGlobalSection
EndGlobal

0 comments on commit d24e719

Please sign in to comment.