Skip to content

Commit 7fd47e6

Browse files
authored
Merge pull request #50 from jpdillingham/develop
Bump version to 3.0.0
2 parents fd24f38 + 04acae9 commit 7fd47e6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Utility.CommandLine.Arguments.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1313
appveyor.yml = appveyor.yml
1414
CONTRIBUTING.md = CONTRIBUTING.md
1515
LICENSE = LICENSE
16-
pack.sh = pack.sh
16+
tools\pack.sh = tools\pack.sh
1717
README.md = README.md
1818
EndProjectSection
1919
EndProject

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ before_build:
44
build_script:
55
- dotnet build --no-restore --no-incremental
66
test_script:
7-
- dotnet test -p:CollectCoverage=true -p:CoverletOutput='./coverage.xml' -p:CoverletOutputFormat=opencover tests/Utility.CommandLine.Arguments.Tests
7+
- dotnet test -p:CollectCoverage=true -p:CoverletOutput="./coverage.xml" -p:CoverletOutputFormat=opencover tests/Utility.CommandLine.Arguments.Tests -p:Include="[Utility.CommandLine.Arguments*]*" -p:Exclude="[*.Tests]*"
88
- pip install codecov
99
- codecov -f "tests/Utility.CommandLine.Arguments.Tests/coverage.xml"

src/Utility.CommandLine.Arguments/Utility.CommandLine.Arguments.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
6-
<AssemblyVersion>2.0.1.0</AssemblyVersion>
5+
<Version>3.0.0</Version>
6+
<AssemblyVersion>3.0.0.0</AssemblyVersion>
77
<LangVersion>7</LangVersion>
88
</PropertyGroup>
99

src/Utility.CommandLine.Arguments/Utility.CommandLine.Arguments.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Utility.CommandLine.Arguments</id>
5-
<version>2.0.1</version>
5+
<version>3.0.0</version>
66
<authors>JP Dillingham</authors>
77
<owners>JP Dillingham</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
99
<licenseUrl>https://github.com/jpdillingham/Utility.CommandLine.Arguments/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/jpdillingham/Utility.CommandLine.Arguments</projectUrl>
1111
<description>A C# .NET Class Library containing tools for parsing the command line arguments of console applications.</description>
12-
<releaseNotes>Fix NuGet targeting of .NETStard2.0.</releaseNotes>
12+
<releaseNotes>Fix Type identification in async contexts, allow list arguments using mix of short and long keys</releaseNotes>
1313
<copyright>Copyright (c) 2017-2018 JP Dillingham (jp@dillingham.ws)</copyright>
1414
<language>en-US</language>
1515
<dependencies>

0 commit comments

Comments
 (0)