Skip to content

Commit ec3af42

Browse files
feat(Resolve): recursive is now the default, fixes #58
1 parent 261a1cc commit ec3af42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CoreApi/GenericApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public partial class IpfsClient : IGenericApi
2121
}
2222

2323
/// <inheritdoc />
24-
public async Task<string> ResolveAsync(string name, bool recursive = false, CancellationToken cancel = default(CancellationToken))
24+
public async Task<string> ResolveAsync(string name, bool recursive = true, CancellationToken cancel = default(CancellationToken))
2525
{
2626
var json = await DoCommandAsync("resolve", cancel,
2727
name,

src/IpfsHttpClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</PropertyGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="Ipfs.Core" Version="0.53.1" />
30+
<PackageReference Include="Ipfs.Core" Version="0.54.0" />
3131
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
3232
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'netstandard14'" />
3333
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'net45'" />

0 commit comments

Comments
 (0)