Skip to content

Commit

Permalink
v2.2.1 (#23)
Browse files Browse the repository at this point in the history
- *Fixed:* All dependencies updated to the latest version.
  • Loading branch information
chullybun authored Jul 26, 2024
1 parent f9e19ad commit 0103fe9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Represents the **NuGet** versions.

## v2.2.1
- *Fixed:* All dependencies updated to the latest version.

## v2.2.0
- *Enhancement:* Added `ConeGenerator.OnConfigurationLoad` to enable validation and/or mutation of the configuration (`JsonNode`) before deserialization into the corresponding `ConfigBase` type.

Expand Down
2 changes: 1 addition & 1 deletion src/OnRamp/CodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static async Task<CodeGenerator> CreateAsync(ICodeGeneratorArgs args)
/// <returns>The <typeparamref name="TCodeGenerator"/> instance.</returns>
/// <remarks>The constructor must be the same as the <see cref="CodeGenerator"/>.</remarks>
public static async Task<TCodeGenerator> CreateAsync<TCodeGenerator>(ICodeGeneratorArgs args) where TCodeGenerator : CodeGenerator
=> (TCodeGenerator)Activator.CreateInstance(typeof(TCodeGenerator), new object[] { args, await LoadScriptsAsync(args).ConfigureAwait(false) });
=> (TCodeGenerator)Activator.CreateInstance(typeof(TCodeGenerator), [args, await LoadScriptsAsync(args).ConfigureAwait(false)]);

/// <summary>
/// Load the Scripts.
Expand Down
10 changes: 5 additions & 5 deletions src/OnRamp/OnRamp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>OnRamp</RootNamespace>
<Version>2.2.0</Version>
<Version>2.2.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Avanade</Authors>
<Company>Avanade</Company>
Expand Down Expand Up @@ -48,13 +48,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Handlebars.Net" Version="2.1.4" />
<PackageReference Include="Handlebars.Net" Version="2.1.6" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Pluralize.NET" Version="1.0.2" />
<PackageReference Include="StrongNamer" Version="0.2.5" />
<PackageReference Include="System.Text.Json" Version="8.0.2" />
<PackageReference Include="YamlDotNet" Version="15.1.2" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="YamlDotNet" Version="16.0.0" />
</ItemGroup>

</Project>
8 changes: 4 additions & 4 deletions tests/OnRamp.Test/OnRamp.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.1">
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 0103fe9

Please sign in to comment.