From ecc0c3a2fa606f0300b1f7440f22051362d1a62a Mon Sep 17 00:00:00 2001 From: Bernie White Date: Fri, 5 Apr 2019 08:52:45 +1000 Subject: [PATCH] Post v0.4.0 pipeline update (#126) - Updated pipeline version number - Copy conceptual help topics to module --- CHANGELOG.md | 1 + PSRule.build.ps1 | 2 +- azure-pipelines.yml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fec1d3da5..272bb6535a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased - Fix null reference exception when traversing null field [#123](https://github.com/BernieWhite/PSRule/issues/123) +- Fix missing help topics for options and variables [#125](https://github.com/BernieWhite/PSRule/issues/125) ## v0.4.0 diff --git a/PSRule.build.ps1 b/PSRule.build.ps1 index 6f49509a4c..88e59d7945 100644 --- a/PSRule.build.ps1 +++ b/PSRule.build.ps1 @@ -88,7 +88,7 @@ task BuildModule BuildDotNet, CopyModule task BuildHelp BuildModule, PlatyPS, { # Generate MAML and about topics - $Null = New-ExternalHelp -OutputPath out/docs/PSRule -Path '.\docs\commands\PSRule\en-US','.\docs\keywords\PSRule\en-US' -Force; + $Null = New-ExternalHelp -OutputPath out/docs/PSRule -Path '.\docs\commands\PSRule\en-US','.\docs\keywords\PSRule\en-US', '.\docs\concepts\PSRule\en-US' -Force; # Copy generated help into module out path $Null = Copy-Item -Path out/docs/PSRule/* -Destination out/modules/PSRule/en-US; diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b3a7c04c13..50f27b6301 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,7 +15,7 @@ strategy: variables: buildConfiguration: 'Release' - version: '0.4.0' + version: '0.5.0' # Use build number format, i.e. 0.1.0-B181101 name: $(version)-B$(date:yyMM)$(rev:rr)