Skip to content

Commit 84b5cd4

Browse files
committed
Updated esw version
1 parent ac0222c commit 84b5cd4

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
jobs:
99
release:
1010
env:
11-
CSW_VERSION: "6.0.0-RC1" # Change before releasing (before tagging repo)
12-
ESW_VERSION: "1.0.0-RC1"
11+
CSW_VERSION: "6.0.0-RC5" # Change before releasing (before tagging repo)
12+
ESW_VERSION: "1.0.0-RC7"
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tmtsoftware/esw-ts",
3-
"version": "1.0.0",
3+
"version": "1.0.0-RC1",
44
"description": "Typescript client for gateway",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",

project/Libs.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object Libs {
1111
val scalaTestPlus = "org.scalatestplus" %% "selenium-4-21" % "3.2.19.0"
1212
}
1313
object ESW {
14-
private val defaultESWVersion = "1.0.0-RC2"
14+
private val defaultESWVersion = "1.0.0-RC7"
1515

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

2222
object CSW {
23-
private val defaultCswVersion = "6.0.0-RC2"
23+
private val defaultCswVersion = "6.0.0-RC4"
2424

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

0 commit comments

Comments
 (0)