Skip to content

Commit

Permalink
6.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ngraczewski committed Oct 1, 2018
1 parent 9fde944 commit b73547c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
6.0.1 / Work in Progress
========================
6.0.1 / 2018-10-01
==================

New functionality added in a backwards-compatible manner:
* [OLMIS-5235:](https://openlmis.atlassian.net/browse/OLMIS-5235): Extended LocalDatabase class:
Expand Down
14 changes: 11 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ pipeline {
success {
script {
if (!VERSION.endsWith("SNAPSHOT")) {
currentBuild.rawBuild.keepLog(true)
currentBuild.setKeepLog(true)
}
}
}
Expand All @@ -156,13 +156,21 @@ pipeline {
}
post {
fixed {
slackSend color: 'good', message: "${env.JOB_NAME} - #${env.BUILD_NUMBER} Back to normal"
script {
BRANCH = "${env.GIT_BRANCH}".trim()
if (BRANCH.equals("master") || BRANCH.startsWith("rel-")) {
slackSend color: 'good', message: "${env.JOB_NAME} - #${env.BUILD_NUMBER} Back to normal"
}
}
}
}
}

def notifyAfterFailure() {
slackSend color: 'danger', message: "${env.JOB_NAME} - #${env.BUILD_NUMBER} ${env.STAGE_NAME} FAILED (<${env.BUILD_URL}|Open>)"
BRANCH = "${env.GIT_BRANCH}".trim()
if (BRANCH.equals("master") || BRANCH.startsWith("rel-")) {
slackSend color: 'danger', message: "${env.JOB_NAME} - #${env.BUILD_NUMBER} ${env.STAGE_NAME} FAILED (<${env.BUILD_URL}|Open>)"
}
emailext subject: "${env.JOB_NAME} - #${env.BUILD_NUMBER} ${env.STAGE_NAME} FAILED",
body: """<p>${env.JOB_NAME} - #${env.BUILD_NUMBER} ${env.STAGE_NAME} FAILED</p><p>Check console <a href="${env.BUILD_URL}">output</a> to view the results.</p>""",
recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'DevelopersRecipientProvider']]
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "2"
services:
ui-components:
image: openlmis/dev-ui:8.0.1-SNAPSHOT
image: openlmis/dev-ui:8.0.1
ports:
- "9000:9000"
- "9876:9876"
Expand Down
2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=6.0.1-SNAPSHOT
version=6.0.1
projectName=OpenLMIS UI Components
projectKey=ui-components
transifexProject=openlmis-ui-components

0 comments on commit b73547c

Please sign in to comment.