Skip to content

Commit

Permalink
Merge pull request #150 from Afterlife-Guide/release/1.0.6.8
Browse files Browse the repository at this point in the history
Release version 1.0.6.8
  • Loading branch information
baynezy authored Jan 16, 2025
2 parents 3df44c6 + 1ddf8ab commit a88faac
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 21 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.4.6
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
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.4.6
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
with:
path: semver.json
major-version: ${{ github.event.inputs.major_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
ref: ${{ inputs.checkout-ref }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: 8.0.x
- name: Restore
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.4.6
uses: Afterlife-Guide/SemVer.Action@1.0.5.7
with:
path: 'semver.json'
- id: set-version
Expand Down
2 changes: 1 addition & 1 deletion .idea/.idea.SemVer.Action/.idea/sonarlint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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]

## [1.0.6.8] - 2025-01-16

## [1.0.5.7] - 2024-11-13

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

## [0.1.0.1] - 2024-03-22

[unreleased]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.5.7...HEAD
[unreleased]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.6.8...HEAD
[1.0.6.8]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.5.7...1.0.6.8
[1.0.5.7]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.4.6...1.0.5.7
[1.0.4.6]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.3.8...1.0.4.6
[1.0.3.8]: https://github.com/Afterlife-Guide/SemVer.Action/compare/1.0.2.7...1.0.3.8
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ outputs:
description: 'The full version number'
runs:
using: 'docker'
image: 'docker://ghcr.io/afterlife-guide/semver.action:1.0.5.7'
image: 'docker://ghcr.io/afterlife-guide/semver.action:1.0.6.8'
args:
- ${{ (inputs.major-version == '0' && inputs.minor-version == '0' && inputs.patch-version == '0' && inputs.build-version == '0') && 'read' || 'write' }}
- '-p'
Expand Down
2 changes: 1 addition & 1 deletion semver.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"major":"1","minor":"0","patch":"5","build":"7"}
{"major":"1","minor":"0","patch":"6","build":"8"}
4 changes: 2 additions & 2 deletions src/SemVer.Json/SemVer.Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions test/SemVer.Json.UnitTests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Global using directives

global using FluentAssertions;
global using FsCheck;
global using FsCheck.Fluent;
global using FsCheck.Xunit;
global using NSubstitute;
global using Xunit;
14 changes: 7 additions & 7 deletions test/SemVer.Json.UnitTests/SemVer.Json.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<PackageReference Include="FsCheck.Xunit" Version="2.16.6" />
<PackageReference Include="JunitXml.TestLogger" Version="4.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="FluentAssertions" Version="7.0.0" />
<PackageReference Include="FsCheck.Xunit" Version="3.0.0" />
<PackageReference Include="JunitXml.TestLogger" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Verify.Xunit" Version="28.2.1" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="Verify.Xunit" Version="28.8.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
5 changes: 1 addition & 4 deletions test/SemVer.Json.UnitTests/SemVerTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using FsCheck;
using FsCheck.Xunit;

namespace SemVer.Json.UnitTests;
namespace SemVer.Json.UnitTests;

public class SemVerTests
{
Expand Down

0 comments on commit a88faac

Please sign in to comment.