From 876f89e9bcdbbf3cafb4773977b25d8ab2388713 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 18 Jan 2019 21:50:19 -0800 Subject: [PATCH] Finish 2.3.1 patch --- .appveyor.yml | 37 ++----------------------- CHANGELOG.md | 10 ++++++- src/CommandLineUtils/releasenotes.props | 4 +++ 3 files changed, 15 insertions(+), 36 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 2b4e9473..a43c5f0e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,13 +1,7 @@ -version: 2.3.0.{build} -build_script: +build_script: - ps: iwr https://get.dot.net/v1/dotnet-install.ps1 -out dotnet-install.ps1; ./dotnet-install.ps1 -Version 2.2.100 - - ps: .\build.ps1 -ci - - ps: .\docs\generate.ps1 -NoBuild -Verbose + - ps: .\docs\generate.ps1 -Verbose environment: - KEYVAULT_CLIENT_SECRET: - secure: Y89qXSB30HLwCrA53cB7Tic3a8GxsTxv8SdhyvU96ROKS8zX9Lf1FWnhEMIal2mo - GITHUB_ACCESS_TOKEN: - secure: 7gza5cyC0Fwp5LcFPz9dGMcHXP2jxbrnu7er9R/HkdvnhzGJVADvOtfYO7+Vow5p global: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 @@ -16,32 +10,5 @@ os: Visual Studio 2017 branches: only: - master - - appveyor - - /^feature\/.*/ -artifacts: - - path: 'artifacts\*.nupkg' - name: Packages - - path: 'artifacts\*.snupkg' - name: Symbols after_deploy: - ps: .\docs\push.ps1 -AppVeyor -deploy: - - provider: NuGet - name: myget - artifact: Packages - server: https://www.myget.org/F/natemcmaster/api/v2/package - symbol_server: https://www.myget.org/F/natemcmaster/api/v2/package - on: - branch: master - api_key: - secure: KF1yGk4IHJyyfiHfFSCxJ+p5iZX+KPfCTnCihjD5iIZjasTS1lHeilpbaon4wvcM - - provider: GitHub - description: 'See https://github.com/natemcmaster/CommandLineUtils/blob/master/CHANGELOG.md for details' - auth_token: - secure: 7gza5cyC0Fwp5LcFPz9dGMcHXP2jxbrnu7er9R/HkdvnhzGJVADvOtfYO7+Vow5p - artifact: Packages - draft: false - prerelease: false - on: - branch: master # release from master branch only - appveyor_repo_tag: true # deploy on tag push only diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b95555a..2ba244e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v2.3.1] + +Bugs fixed: +* Fix [#203][203] - fix InvalidOperationException thrown during help text generation on Mono + +[203]: https://github.com/natemcmaster/CommandLineUtils/issues/203 + ## [v2.3.0] **Dec. 31, 2018** @@ -306,7 +313,8 @@ Other: [@sebastienros]: https://github.com/sebastienros [@TheConstructor]: https://github.com/TheConstructor -[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...HEAD +[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.1...HEAD +[v2.3.1]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0...v2.3.1 [v2.3.0]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0 [v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc [v2.3.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-beta diff --git a/src/CommandLineUtils/releasenotes.props b/src/CommandLineUtils/releasenotes.props index 4ac6035f..086b636d 100644 --- a/src/CommandLineUtils/releasenotes.props +++ b/src/CommandLineUtils/releasenotes.props @@ -1,5 +1,9 @@ + +Bugs fixed: +* Fix for InvalidOperationException thrown during help text generation on Mono +