Skip to content

Commit

Permalink
Merge pull request #175 from Afterlife-Guide/release/0.2.6.10
Browse files Browse the repository at this point in the history
Release version 0.2.6.10
  • Loading branch information
baynezy authored Feb 12, 2025
2 parents 17ef887 + 5d44e50 commit bc16743
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch-hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
echo "patch_version=$(($(cat semver.json | jq -r '.patch')+1))" > $GITHUB_OUTPUT
- name: Store New Version
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
uses: Afterlife-Guide/SemVer.Action@1.0.6.8
with:
path: semver.json
major-version: ${{ needs.get-version.outputs.major }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: git checkout -b release/${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }}

- name: Update Version Number
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
uses: Afterlife-Guide/SemVer.Action@1.0.6.8
with:
path: semver.json
major-version: ${{ github.event.inputs.major_version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/step-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
with:
ref: ${{ inputs.checkout-ref }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v4.2.0
uses: actions/setup-dotnet@v4.3.0
with:
dotnet-version: 8.0.x
- name: Restore
uses: cake-build/cake-action@v2
uses: cake-build/cake-action@v3
with:
target: Restore
- name: Build
uses: cake-build/cake-action@v2
uses: cake-build/cake-action@v3
with:
target: Build
arguments: |
versionNumber: ${{inputs.version}}
- name: Run tests
uses: cake-build/cake-action@v2
uses: cake-build/cake-action@v3
with:
target: Test
- name: Publish Unit Test Results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v4
- name: Get Version
id: get-version
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
uses: Afterlife-Guide/SemVer.Action@1.0.6.8
with:
path: 'semver.json'
- id: set-version
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6.10] - 2025-02-12

## [0.2.5.9] - 2025-01-16

## [0.2.4.8] - 2024-10-15
Expand All @@ -27,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.3.4] - 2023-11-17

[unreleased]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.5.9...HEAD
[unreleased]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.6.10...HEAD
[0.2.6.10]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.5.9...0.2.6.10
[0.2.5.9]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.4.8...0.2.5.9
[0.2.4.8]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.3.7...0.2.4.8
[0.2.3.7]: https://github.com/Afterlife-Guide/AppSettings.Merge/compare/0.2.2.8...0.2.3.7
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
required: true
runs:
using: 'docker'
image: 'docker://ghcr.io/afterlife-guide/appsettings.merge:0.2.5.9'
image: 'docker://ghcr.io/afterlife-guide/appsettings.merge:0.2.6.10'
args:
- '-e'
- ${{ inputs.app-environment }}
Expand Down
2 changes: 1 addition & 1 deletion semver.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"major":"0","minor":"2","patch":"5","build":"9"}
{"major":"0","minor":"2","patch":"6","build":"10"}
2 changes: 1 addition & 1 deletion src/BlazorMerge/BlazorMerge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions test/BlazorMerge.UnitTests/BlazorMerge.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="7.0.0" />
<PackageReference Include="FluentAssertions" Version="7.1.0" />
<PackageReference Include="JunitXml.TestLogger" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Verify.Xunit" Version="28.9.0" />
<PackageReference Include="Verify.Xunit" Version="28.10.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit bc16743

Please sign in to comment.