Skip to content

Commit

Permalink
preparing for v0.4.0-RC1, fixes for CSW and ESW versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dencoded committed Sep 16, 2022
1 parent 8010d9d commit 674dcc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration/utils/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ const appLauncherSync = (name: string, version = 'master-SNAPSHOT') =>

//const csw_sha = '5088284'
//const csw_sha = 'a24934e'
const csw_sha = '879ffae'
const csw_sha = '5.0.0-RC1'
//const esw_sha = '06a6bf1'
const esw_sha = 'bc4c382'
const esw_sha = '0.5.0-RC1'

export const executeServicesScript = appLauncher('backend-testkit-services', esw_sha)
export const executeComponentScript = appLauncher('backend-testkit-component', esw_sha)
Expand Down
4 changes: 2 additions & 2 deletions project/Libs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Libs {
}

object ESW {
private val defaultESWVersion = "bc4c382183"
private val defaultESWVersion = "0.5.0-RC1"

val Version: String = sys.props.get("prod.publish") match {
case Some("true") => sys.env.getOrElse("ESW_VERSION", defaultESWVersion)
Expand All @@ -21,7 +21,7 @@ object ESW {
}

object CSW {
private val defaultCswVersion = "879ffaefd7"
private val defaultCswVersion = "5.0.0-RC1"

val Version: String = sys.props.get("prod.publish") match {
case Some("true") => sys.env.getOrElse("CSW_VERSION", defaultCswVersion)
Expand Down

0 comments on commit 674dcc9

Please sign in to comment.