Skip to content

Commit

Permalink
Switch to a new versioning strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Nov 23, 2023
1 parent 5a5640e commit 5f7b8e1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
windows-only: true
deploy: ${{ inputs.deploy || github.ref_type == 'tag' }}
package-version: ${{ inputs.package-version }}
package-version: ${{ inputs.package-version || (github.ref_type == 'tag' && github.ref_name) || '0.0.0' }}
dotnet-version: 8.0.x
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

> **Important**:
> This changelog is no longer maintained and will be removed in the future.
> Going forward, new versions of this package will have the corresponding release notes published on [GitHub Releases](https://githu.com/Tyrrrz/DotnetRuntimeBootstrapper/releases).
## v2.5.1 (25-May-2023)

- Fixed an issue where the CLI-based bootstrapper crashed if one of the standard streams were redirected.
Expand Down Expand Up @@ -109,4 +113,4 @@ If you previously used a conditional package reference for DotnetRuntimeBootstra

## v1.0 (08-Jun-2021)

Initial release
Initial release
1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project>

<PropertyGroup>
<Version>2.5.1</Version>
<Company>Tyrrrz</Company>
<Copyright>Copyright (C) Oleksii Holub</Copyright>
<LangVersion>latest</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion DotnetRuntimeBootstrapper/DotnetRuntimeBootstrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Description>.NET runtime bootstrapper for Windows applications</Description>
<PackageTags>windows desktop dotnet runtime install bootstrapper</PackageTags>
<PackageProjectUrl>https://github.com/Tyrrrz/DotnetRuntimeBootstrapper</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/Tyrrrz/DotnetRuntimeBootstrapper/blob/master/Changelog.md</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/Tyrrrz/DotnetRuntimeBootstrapper/releases/tag/$(Version)</PackageReleaseNotes>
<PackageIcon>favicon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NoPackageAnalysis>true</NoPackageAnalysis>
Expand Down

0 comments on commit 5f7b8e1

Please sign in to comment.