Skip to content

Commit 876f89e

Browse files
committed
Finish 2.3.1 patch
1 parent 4897770 commit 876f89e

File tree

3 files changed

+15
-36
lines changed

3 files changed

+15
-36
lines changed

.appveyor.yml

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
version: 2.3.0.{build}
2-
build_script:
1+
build_script:
32
- ps: iwr https://get.dot.net/v1/dotnet-install.ps1 -out dotnet-install.ps1; ./dotnet-install.ps1 -Version 2.2.100
4-
- ps: .\build.ps1 -ci
5-
- ps: .\docs\generate.ps1 -NoBuild -Verbose
3+
- ps: .\docs\generate.ps1 -Verbose
64
environment:
7-
KEYVAULT_CLIENT_SECRET:
8-
secure: Y89qXSB30HLwCrA53cB7Tic3a8GxsTxv8SdhyvU96ROKS8zX9Lf1FWnhEMIal2mo
9-
GITHUB_ACCESS_TOKEN:
10-
secure: 7gza5cyC0Fwp5LcFPz9dGMcHXP2jxbrnu7er9R/HkdvnhzGJVADvOtfYO7+Vow5p
115
global:
126
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
137
DOTNET_CLI_TELEMETRY_OPTOUT: 1
@@ -16,32 +10,5 @@ os: Visual Studio 2017
1610
branches:
1711
only:
1812
- master
19-
- appveyor
20-
- /^feature\/.*/
21-
artifacts:
22-
- path: 'artifacts\*.nupkg'
23-
name: Packages
24-
- path: 'artifacts\*.snupkg'
25-
name: Symbols
2613
after_deploy:
2714
- ps: .\docs\push.ps1 -AppVeyor
28-
deploy:
29-
- provider: NuGet
30-
name: myget
31-
artifact: Packages
32-
server: https://www.myget.org/F/natemcmaster/api/v2/package
33-
symbol_server: https://www.myget.org/F/natemcmaster/api/v2/package
34-
on:
35-
branch: master
36-
api_key:
37-
secure: KF1yGk4IHJyyfiHfFSCxJ+p5iZX+KPfCTnCihjD5iIZjasTS1lHeilpbaon4wvcM
38-
- provider: GitHub
39-
description: 'See https://github.com/natemcmaster/CommandLineUtils/blob/master/CHANGELOG.md for details'
40-
auth_token:
41-
secure: 7gza5cyC0Fwp5LcFPz9dGMcHXP2jxbrnu7er9R/HkdvnhzGJVADvOtfYO7+Vow5p
42-
artifact: Packages
43-
draft: false
44-
prerelease: false
45-
on:
46-
branch: master # release from master branch only
47-
appveyor_repo_tag: true # deploy on tag push only

CHANGELOG.md

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

3+
## [v2.3.1]
4+
5+
Bugs fixed:
6+
* Fix [#203][203] - fix InvalidOperationException thrown during help text generation on Mono
7+
8+
[203]: https://github.com/natemcmaster/CommandLineUtils/issues/203
9+
310
## [v2.3.0]
411

512
**Dec. 31, 2018**
@@ -306,7 +313,8 @@ Other:
306313
[@sebastienros]: https://github.com/sebastienros
307314
[@TheConstructor]: https://github.com/TheConstructor
308315

309-
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...HEAD
316+
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...HEAD
317+
[v2.3.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...v2.3.1
310318
[v2.3.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0
311319
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
312320
[v2.3.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-beta

src/CommandLineUtils/releasenotes.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Project>
22
<PropertyGroup>
3+
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.1'">
4+
Bugs fixed:
5+
* Fix for InvalidOperationException thrown during help text generation on Mono
6+
</PackageReleaseNotes>
37
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.0'">
48
<![CDATA[
59

0 commit comments

Comments
 (0)