Skip to content

Commit de19838

Browse files
authored
Skip V4 and jump to V5 instead (#23)
4.0.x numbers were already accidentally published to Nuget.org 2yrs ago and can't be used again
1 parent 6eef856 commit de19838

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cd-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
dotnet pack "Neolution.DotNet.Console\Neolution.DotNet.Console.csproj" --configuration ${{ env.BUILD_CONFIGURATION }} --no-build -p:PackageVersion=$NUGET_VERSION
3535
3636
- name: Push NuGet package
37-
run: dotnet nuget push --skip-duplicate -k $NUGET_AUTH_TOKEN **/bin/Release/*.nupkg
37+
run: dotnet nuget push -k $NUGET_AUTH_TOKEN **/bin/Release/*.nupkg
3838
env:
3939
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY_NEOLUTION }}

CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [4.0.0] - 2025-01-27
11-
1210
### Added
1311

1412
- Added cancellation token support for commands

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ To help you kickstart your console application, we've provided a a [sample appli
88

99
# Guides
1010

11-
## Migrate from V3 to V4
11+
## Migrate from V3 to V5
12+
13+
*Note: V4 was intentionally skipped, there is no V4 release.*
1214

1315
To support cancellation tokens, the `IDotNetConsoleCommand` interface had to be changed: The `RunAsync` method now requires also a `CancellationToken` as a parameter. This change is breaking, so you will need to update your commands to reflect this change.
1416

0 commit comments

Comments
 (0)