Skip to content

Commit ee3e12e

Browse files
authored
Merge pull request #201 from Afterlife-Guide/release/1.1.0.12
Release version 1.1.0.12
2 parents 38e13ac + 8572f1f commit ee3e12e

File tree

10 files changed

+22
-15
lines changed

10 files changed

+22
-15
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ updates:
2727
- "dependencies"
2828

2929
- package-ecosystem: "docker"
30-
directory: "/" # Location of package manifests
30+
directory: "/src/SemVer.Json" # Location of package manifests
3131
schedule:
3232
interval: "daily"
3333
labels:

.github/workflows/branch-hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: |
3434
echo "patch_version=$(($(cat semver.json | jq -r '.patch')+1))" > $GITHUB_OUTPUT
3535
- name: Store New Version
36-
uses: Afterlife-Guide/SemVer.Action@1.0.8.10
36+
uses: Afterlife-Guide/SemVer.Action@1.0.9.11
3737
with:
3838
path: semver.json
3939
major-version: ${{ needs.get-version.outputs.major }}

.github/workflows/draft-new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: git checkout -b release/${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }}
2525

2626
- name: Update Version Number
27-
uses: Afterlife-Guide/SemVer.Action@1.0.8.10
27+
uses: Afterlife-Guide/SemVer.Action@1.0.9.11
2828
with:
2929
path: semver.json
3030
major-version: ${{ github.event.inputs.major_version }}

.github/workflows/step-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838
- name: Get Version
3939
id: get-version
40-
uses: Afterlife-Guide/SemVer.Action@1.0.8.10
40+
uses: Afterlife-Guide/SemVer.Action@1.0.9.11
4141
with:
4242
path: 'semver.json'
4343
- id: set-version

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0.12] - 2025-06-05
11+
12+
### Fixed
13+
14+
- Fixed Dependabot configuration to correctly locate Dockerfile for dependency tracking. [#195](https://github.com/Afterlife-Guide/SemVer.Action/issues/195)
15+
1016
## [1.0.9.11] - 2025-04-10
1117

1218
## [1.0.8.10] - 2025-03-13
@@ -37,7 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3743

3844
## [0.1.0.1] - 2024-03-22
3945

40-
[unreleased]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.9.11...HEAD
46+
[unreleased]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.1.0.12...HEAD
47+
[1.1.0.12]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.9.11...1.1.0.12
4148
[1.0.9.11]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.8.10...1.0.9.11
4249
[1.0.8.10]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.7.9...1.0.8.10
4350
[1.0.7.9]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.6.8...1.0.7.9

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ outputs:
3434
description: 'The full version number'
3535
runs:
3636
using: 'docker'
37-
image: 'docker://ghcr.io/afterlife-guide/semver.action:1.0.9.11'
37+
image: 'docker://ghcr.io/afterlife-guide/semver.action:1.1.0.12'
3838
args:
3939
- ${{ (inputs.major-version == '0' && inputs.minor-version == '0' && inputs.patch-version == '0' && inputs.build-version == '0') && 'read' || 'write' }}
4040
- '-p'

semver.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"major":"1","minor":"0","patch":"9","build":"11"}
1+
{"major":"1","minor":"1","patch":"0","build":"12"}

src/SemVer.Json/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Set the base image as the .NET 7.0 SDK (this includes the runtime)
2-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
2+
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env
33

44
# Copy everything and publish the release (publish implicitly restores and builds)
55
WORKDIR /app
66
COPY . ./
77
RUN dotnet publish ./src/SemVer.Json/SemVer.Json.csproj -c Release -o out --no-self-contained
88

9-
FROM mcr.microsoft.com/dotnet/runtime:8.0-alpine
9+
FROM mcr.microsoft.com/dotnet/runtime:9.0-alpine
1010
COPY --from=build-env /app/out .
1111
ENTRYPOINT [ "dotnet", "/SemVer.Json.dll" ]

src/SemVer.Json/SemVer.Json.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="CommandLineParser" Version="2.9.1" />
12-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
13-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
12+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.5" />
13+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.5" />
1414
</ItemGroup>
1515

1616
</Project>

test/SemVer.Json.UnitTests/SemVer.Json.UnitTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
<ItemGroup>
1010
<PackageReference Include="FluentAssertions" Version="7.2.0" />
11-
<PackageReference Include="FsCheck.Xunit" Version="3.1.0" />
11+
<PackageReference Include="FsCheck.Xunit" Version="3.3.0" />
1212
<PackageReference Include="JunitXml.TestLogger" Version="6.1.0" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1414
<PackageReference Include="NSubstitute" Version="5.3.0" />
15-
<PackageReference Include="Verify.Xunit" Version="29.2.0" />
15+
<PackageReference Include="Verify.Xunit" Version="30.3.1" />
1616
<PackageReference Include="xunit" Version="2.9.3" />
17-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
17+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
</PackageReference>

0 commit comments

Comments
 (0)