Skip to content

Commit 5b84bdc

Browse files
committed
bump version to 0.5.1
1 parent b3a65e8 commit 5b84bdc

File tree

5 files changed

+11
-17
lines changed

5 files changed

+11
-17
lines changed

CommandLineParser.Tests/CommandLineParser.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

CommandLineParser/CommandLineParser.csproj

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>MatthiWare.CommandLine</RootNamespace>
66
<PackageId>MatthiWare.CommandLineParser</PackageId>
7-
<Version>0.5.0</Version>
7+
<Version>0.5.1</Version>
88
<Authors>Matthias Beerens</Authors>
99
<Company>MatthiWare</Company>
1010
<Product>Command Line Parser</Product>
@@ -14,13 +14,10 @@
1414
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
1515
<PackageTags>Commandline parser commandline-parser cli</PackageTags>
1616
<LangVersion>7.3</LangVersion>
17-
<AssemblyVersion>0.5.0.0</AssemblyVersion>
18-
<FileVersion>0.5.0.0</FileVersion>
17+
<AssemblyVersion>0.5.1.0</AssemblyVersion>
18+
<FileVersion>0.5.1.0</FileVersion>
1919
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20-
<PackageReleaseNotes>- Option clustering/grouping
21-
- Suggestions when mistyping command/options
22-
- Positional parameters
23-
- Support for all basic datatypes</PackageReleaseNotes>
20+
<PackageReleaseNotes>- Fix incorrect error message</PackageReleaseNotes>
2421
<Copyright>Copyright Matthias Beerens 2018</Copyright>
2522
</PropertyGroup>
2623

Extensions/FluentValidationsExtensions/FluentValidationsExtensions.csproj

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>MatthiWare.CommandLine.Extensions.FluentValidations</RootNamespace>
66
<AssemblyName>CommandLineParser.FluentValidations</AssemblyName>
7-
<Version>0.5.0</Version>
7+
<Version>0.5.1</Version>
88
<Authors>Matthias Beerens</Authors>
99
<Company>MatthiWare</Company>
1010
<Product>FluentValidations Extension For CommandLineParser.Core</Product>
@@ -14,13 +14,10 @@
1414
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
1515
<PackageTags>Commandline parser commandline-parser cli fluent-validations extension</PackageTags>
1616
<LangVersion>7.3</LangVersion>
17-
<AssemblyVersion>0.5.0.0</AssemblyVersion>
18-
<FileVersion>0.5.0.0</FileVersion>
17+
<AssemblyVersion>0.5.1.0</AssemblyVersion>
18+
<FileVersion>0.5.1.0</FileVersion>
1919
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20-
<PackageReleaseNotes>- Option clustering/grouping
21-
- Suggestions when mistyping command/options
22-
- Positional parameters
23-
- Support for all basic datatypes</PackageReleaseNotes>
20+
<PackageReleaseNotes>- Update dependencies</PackageReleaseNotes>
2421
<Copyright>Copyright Matthias Beerens 2019</Copyright>
2522
</PropertyGroup>
2623

Extensions/Tests/FluentValidationsExtensions.Tests/FluentValidationsExtensions.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

SampleApp/SampleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<LangVersion>7.3</LangVersion>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)