Skip to content

Commit 1aa5b8c

Browse files
authored
docs: update package metadata and release notes (#324)
1 parent fcfd448 commit 1aa5b8c

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
# Changelog
22

3-
[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v2.4.2...HEAD):
3+
[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v2.5.0...HEAD):
4+
5+
## [v2.5.0](https://github.com/natemcmaster/CommandLineUtils/compare/v2.4.4...v2.5.0)
46

57
* Fix [#92] by [@kbilsted] - Show enum names in help text for Options and Arguments stored as enum
68
* Fix [#287] by [@Alxandr] - Add support for private base type options
79
* Fix [#303] by [@AndreGleichner] - Update generated help to display [command] first then [options]
10+
* Fix [#307] by [@daveMueller] - Update help text generator to display HelpOption correctly
811

912
[@kbilsted]: https://github.com/kbilsted
1013
[@Alxandr]: https://github.com/Alxandr
1114
[@AndreGleichner]: https://github.com/AndreGleichner
15+
[@daveMueller]: https://github.com/daveMueller
1216
[#92]: https://github.com/natemcmaster/CommandLineUtils/issues/92
1317
[#287]: https://github.com/natemcmaster/CommandLineUtils/issues/287
1418
[#303]: https://github.com/natemcmaster/CommandLineUtils/issues/303
19+
[#307]: https://github.com/natemcmaster/CommandLineUtils/issues/307
1520

1621
## [v2.4.4](https://github.com/natemcmaster/CommandLineUtils/compare/v2.4.3...v2.4.4)
1722

Directory.Build.props

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<Product>CommandLineUtils</Product>
66
<Copyright>Copyright © Nate McMaster</Copyright>
77
<NeutralLanguage>en-US</NeutralLanguage>
8+
<NoPackageAnalysis>true</NoPackageAnalysis>
89
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
910
<PackageProjectUrl>https://github.com/natemcmaster/CommandLineUtils</PackageProjectUrl>
1011
<RepositoryUrl>https://github.com/natemcmaster/CommandLineUtils.git</RepositoryUrl>
@@ -15,7 +16,18 @@
1516
<IncludeSymbols>true</IncludeSymbols>
1617
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1718
<PackageIconUrl>https://natemcmaster.github.io/CommandLineUtils/logo.png</PackageIconUrl>
18-
<NoPackageAnalysis>true</NoPackageAnalysis>
19+
<PackageIcon>icon.png</PackageIcon>
20+
</PropertyGroup>
21+
22+
<ItemGroup Condition=" '$(IsPackable)' == 'true' ">
23+
<None Include="$(MSBuildThisFileDirectory)docs\logo.png">
24+
<Pack>true</Pack>
25+
<PackagePath>/$(PackageIcon)</PackagePath>
26+
<Visible>false</Visible>
27+
</None>
28+
</ItemGroup>
29+
30+
<PropertyGroup>
1931
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
2032
<WarningsNotAsErrors>$(WarningsNotAsErrors);1591</WarningsNotAsErrors>
2133
<LangVersion>8.0</LangVersion>
@@ -35,7 +47,7 @@
3547

3648
<PropertyGroup>
3749
<VersionPrefix>2.5.0</VersionPrefix>
38-
<VersionSuffix>beta</VersionSuffix>
50+
<VersionSuffix>rc</VersionSuffix>
3951
<IncludePreReleaseLabelInPackageVersion Condition="'$(IsStableBuild)' != 'true'">true</IncludePreReleaseLabelInPackageVersion>
4052
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(BUILD_NUMBER)</BuildNumber>
4153
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber>

src/CommandLineUtils/releasenotes.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Features and bug fixes:
66
* @kbilsted: Show enum names in help text for Options and Arguments stored as enum
77
* @Alxandr: Add support for private base type options
88
* @AndreGleichner: Update generated help to display [command] first then [options]
9+
* @daveMueller: Fix generated help to display the help options correctly
910
</PackageReleaseNotes>
1011
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('2.4.'))">
1112
Features and bug fixes by some awesome contributors:

0 commit comments

Comments
 (0)