Skip to content

Commit

Permalink
Merge pull request #49 from baynezy/release/0.2.1.3
Browse files Browse the repository at this point in the history
Release version 0.2.1.3
  • Loading branch information
baynezy committed May 20, 2024
2 parents b59d2e9 + 24d8430 commit c6495ea
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .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: RadovanPelka/github-action-json@v1.0.1
uses: RadovanPelka/github-action-json@v1.0.2
with:
path: semver.json
replaceWith: |
Expand All @@ -44,7 +44,7 @@ jobs:
"build": "${{ github.run_number }}"
}
- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@2.0.0
uses: thomaseizinger/keep-a-changelog-new-release@3.0.0
with:
tag: ${{ needs.get-version.outputs.major }}.${{ needs.get-version.outputs.minor }}.${{ steps.increment_version.outputs.patch_version }}.${{ github.run_number }}
- name: Commit Changes
Expand Down
4 changes: 2 additions & 2 deletions .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: RadovanPelka/github-action-json@v1.0.1
uses: RadovanPelka/github-action-json@v1.0.2
with:
path: semver.json
replaceWith: |
Expand All @@ -36,7 +36,7 @@ jobs:
}
- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@2.0.0
uses: thomaseizinger/keep-a-changelog-new-release@3.0.0
with:
tag: ${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }}

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: RadovanPelka/github-action-json@v1.0.1
uses: RadovanPelka/github-action-json@v1.0.2
with:
path: 'semver.json'
- id: set-version
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1.3] - 2024-05-20

## [0.2.0.2] - 2024-02-27

## [0.1.0.1] - 2023-11-20

[Unreleased]: https://github.com/baynezy/FoxPro2CSV/compare/0.2.0.2...HEAD

[unreleased]: https://github.com/baynezy/FoxPro2CSV/compare/0.2.1.3...HEAD
[0.2.1.3]: https://github.com/baynezy/FoxPro2CSV/compare/0.2.0.2...0.2.1.3
[0.2.0.2]: https://github.com/baynezy/FoxPro2CSV/compare/0.1.0.1...0.2.0.2

[0.1.0.1]: https://github.com/baynezy/FoxPro2CSV/compare/4d15b3bd7d1cb4696981b39aa5af2ba10103d349...0.1.0.1
4 changes: 2 additions & 2 deletions semver.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"major": "0",
"minor": "2",
"patch": "0",
"build": "2"
"patch": "1",
"build": "3"
}
4 changes: 2 additions & 2 deletions src/Converter/Converter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<ItemGroup>
<PackageReference Include="Cocona" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Spectre.Console" Version="0.48.1-preview.0.32" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="System.Data.OleDb" Version="8.0.0" />
<PackageReference Include="vertical-spectreconsolelogger" Version="0.10.1-dev.20231028.28" />
<PackageReference Include="vertical-spectreconsolelogger" Version="0.10.1-dev.20240326.31" />
</ItemGroup>

</Project>

0 comments on commit c6495ea

Please sign in to comment.