Skip to content

Commit a39a97a

Browse files
committed
bump
1 parent 5555ce5 commit a39a97a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

NNostr.Client/NNostr.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<LangVersion>11</LangVersion>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9-
<PackageVersion>0.0.45</PackageVersion>
9+
<PackageVersion>0.0.46</PackageVersion>
1010
<Title>Nostr Client</Title>
1111
<Description>A client for Nostr</Description>
1212
<Copyright>MIT</Copyright>

NNostr.Client/Protocols/NIP47.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System.Collections.Specialized;
2+
using System.Runtime.CompilerServices;
23
using System.Text.Json;
34
using System.Text.Json.Nodes;
45
using System.Text.Json.Serialization;
@@ -180,7 +181,7 @@ public static async Task<Nip47Response> SendNIP47Request(this INostrClient nostr
180181
}
181182

182183
public static async IAsyncEnumerable<Nip47Notification> SubscribeNip47Notifications(this INostrClient nostrClient, ECXOnlyPubKey serverKey,
183-
ECPrivKey secretKey,CancellationToken cancellationToken )
184+
ECPrivKey secretKey,[EnumeratorCancellation] CancellationToken cancellationToken )
184185
{
185186
await foreach (var nostrEvent in nostrClient.SubscribeForEvents(new NostrSubscriptionFilter[]
186187
{

Relay/Relay.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
6-
<AssemblyVersion>0.0.19</AssemblyVersion>
6+
<AssemblyVersion>0.0.20</AssemblyVersion>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

0 commit comments

Comments
 (0)