Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageVersion>
<!-- Microsoft -->
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<!-- Shouldly -->
<PackageVersion Include="Shouldly" Version="4.3.0" />
<!-- StringTemplates -->
<PackageVersion Include="StringTemplates" Version="10.0.0" />
<PackageVersion Include="StringTemplates" Version="10.0.1" />
<!-- xUnit -->
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
Expand Down
Binary file added releases/StringTemplates.10.0.1.nupkg
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions src/StringTemplates/StringTemplates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<PackageId>StringTemplates</PackageId>
<Title>StringTemplates</Title>
<Version>10.0.0</Version>
<Version>10.0.1</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-OSS</Company>

<Copyright>Copyright © Stratis Dermanoutsos 2025</Copyright>
<Copyright>Copyright © Stratis Dermanoutsos 2026</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>

<PackageProjectUrl>https://github.com/Stratis-OSS/StringTemplates.Net</PackageProjectUrl>
Expand All @@ -17,7 +17,7 @@
<Description>The best way to handle templates and replace placeholders.</Description>
<PackageTags>open-source oss csharp dotnet strings templates placeholders</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>* Upgraded to .NET 10 and C# 14.
<PackageReleaseNotes>* Updated dependencies to latest versions.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<PackageId>StringTemplates.Configuration</PackageId>
<Title>StringTemplates.Configuration</Title>
<Version>10.0.0</Version>
<Version>10.0.1</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-OSS</Company>

<Copyright>Copyright © Stratis Dermanoutsos 2025</Copyright>
<Copyright>Copyright © Stratis Dermanoutsos 2026</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>

<PackageProjectUrl>https://github.com/Stratis-OSS/StringTemplates.Net</PackageProjectUrl>
Expand All @@ -17,7 +17,7 @@
<Description>The best way to handle templates and replace placeholders using IConfiguration.</Description>
<PackageTags>open-source oss csharp dotnet strings templates placeholders environment config</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>* Upgraded to .NET 10 and C# 14.
<PackageReleaseNotes>* Updated dependencies to latest versions.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Loading