Skip to content

Commit

Permalink
Update dependencies for Neo 3.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry committed Oct 12, 2021
1 parent fc4f7f2 commit 6c7ed5e
Show file tree
Hide file tree
Showing 6 changed files with 167 additions and 5,357 deletions.
4 changes: 2 additions & 2 deletions src/adapter3/DebugAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected override void HandleLaunchRequestAsync(IRequestResponder<LaunchArgumen
return;
}

LaunchConfigParser.CreateDebugSessionAsync(responder.Arguments, Protocol.SendEvent, defaultDebugView)
_ = LaunchConfigParser.CreateDebugSessionAsync(responder.Arguments, Protocol.SendEvent, defaultDebugView)
.ContinueWith(t =>
{
if (t.IsCompletedSuccessfully)
Expand All @@ -109,7 +109,7 @@ protected override void HandleLaunchRequestAsync(IRequestResponder<LaunchArgumen
responder.SetError(new ProtocolException($"Unknown error in {nameof(LaunchConfigParser.CreateDebugSessionAsync)}"));
}
}
});
}, TaskScheduler.Current);
}

private void HandleDebugViewRequest(DebugViewArguments arguments)
Expand Down
6 changes: 3 additions & 3 deletions src/adapter3/LaunchConfigParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static async Task<IApplicationEngine> CreateDebugEngineAsync(ConfigProps config,
{
var program = ParseProgram(config);
var launchNefFile = LoadNefFile(program);
var launchManifest = await LoadContractManifest(program).ConfigureAwait(false);
var launchManifest = await LoadContractManifestAsync(program).ConfigureAwait(false);

ExpressChain? chain = null;
if (config.TryGetValue("neo-express", out var neoExpressPath))
Expand Down Expand Up @@ -199,7 +199,7 @@ static NefFile LoadNefFile(string path)
return reader.ReadSerializable<NefFile>();
}

static async Task<ContractManifest> LoadContractManifest(string contractPath)
static async Task<ContractManifest> LoadContractManifestAsync(string contractPath)
{
var bytesManifest = await File.ReadAllBytesAsync(
Path.ChangeExtension(contractPath, ".manifest.json")).ConfigureAwait(false);
Expand All @@ -225,7 +225,7 @@ static async Task<ContractManifest> LoadContractManifest(string contractPath)
}
});

var metadata = RocksDbStorageProvider.RestoreCheckpoint(checkpoint.Value<string>() ?? "", checkpointTempPath);
var metadata = RocksDbUtility.RestoreCheckpoint(checkpoint.Value<string>() ?? "", checkpointTempPath);
if (magic.HasValue && magic.Value != metadata.magic)
throw new Exception($"checkpoint magic ({metadata.magic}) doesn't match ({magic.Value})");
if (addressVersion.HasValue && addressVersion.Value != metadata.addressVersion)
Expand Down
2 changes: 1 addition & 1 deletion src/adapter3/neodebug-3-adapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
<PackageReference Include="Microsoft.VisualStudio.Shared.VsCodeDebugProtocol" Version="16.9.50204.1" />
<PackageReference Include="Neo.BlockchainToolkit.Library" Version="3.0.4" />
<PackageReference Include="Neo.BlockchainToolkit.Library" Version="3.0.12" />
<PackageReference Include="Nito.Disposables" Version="2.2.0" />
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
Expand Down
6 changes: 6 additions & 0 deletions src/extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ will not have contiguous patch numbers. Initial major and minor releases will be
in this file without a patch number. Patch version will be included for bug fix releases, but
may not exactly match a publicly released version.

## [3.0.5] - 2021-10-12

### Changed

* Update dependencies for Neo 3.0.3 release

## [3.0.3] - 2021-08-06

### Changed
Expand Down
Loading

0 comments on commit 6c7ed5e

Please sign in to comment.