Skip to content

Commit

Permalink
Update Release number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaykul committed Nov 12, 2017
1 parent 455b7b5 commit 991b463
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Configuration.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = '.\Configuration.psm1'

# Version number of this module.
ModuleVersion = '1.1.2'
ModuleVersion = '1.2.0'

# ID used to uniquely identify this module
GUID = 'e56e5bec-4d97-4dfd-b138-abbaa14464a6'
Expand Down
25 changes: 25 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 1.2.{build}
image: Visual Studio 2017
init:
- ps: |
Install-Package Configuration -Provider PowerShellGet -Minimum 1.0 -Force -ForceBootstrap
Install-Package Pester -Provider PowerShellGet -Minimum 4.0 -Force -SkipPublisherCheck
install:
- ps: |
.\Build.ps1 -Step Clean, Update -Verbose
nuget:
disable_publish_on_pr: true
build_script:
- ps: .\Build.ps1 -Step Build -Verbose
test_script:
- ps: .\Build.ps1 -Step Test -Verbose
deploy_script:
- ps: .\Build.ps1 -Step Package -Verbose | % { Push-AppveyorArtifact $_.FullName }
notifications:
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
channel: poshcode
template: "<{{buildUrl}}|Build {{projectName}} {{buildVersion}} {{status}}>\nCommit <{{commitUrl}}|{{commitId}}> by {{commitAuthor}} on {{commitDate}}:\n_{{commitMessage}}_{{#messages}}\n{{.}}{{/messages}}"
on_build_success: true
on_build_failure: true
on_build_status_changed: false

0 comments on commit 991b463

Please sign in to comment.