Skip to content

Commit

Permalink
Finish 2.3.1 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Jan 19, 2019
1 parent 4897770 commit 876f89e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 36 deletions.
37 changes: 2 additions & 35 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions src/CommandLineUtils/releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.1'">
Bugs fixed:
* Fix for InvalidOperationException thrown during help text generation on Mono
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.0'">
<![CDATA[
Expand Down

0 comments on commit 876f89e

Please sign in to comment.