Skip to content

Commit be5e799

Browse files
committed
#CSW-143: Chauhan : Update versions before tagging
1 parent ca35834 commit be5e799

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

jitpack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jdk:
22
- adoptopenjdk11
33
before_install:
4-
- wget https://repo1.maven.org/maven2/org/scala-sbt/sbt-launch/1.3.13/sbt-launch-1.3.13.jar
4+
- wget https://repo1.maven.org/maven2/org/scala-sbt/sbt-launch/1.5.4/sbt-launch-1.5.4.jar
55
install:
6-
- java -Xms2048m -Xmx2048m -XX:ReservedCodeCacheSize=512m -jar sbt-launch-1.3.13.jar -Dsbt.log.noformat=true clean publishM2
6+
- java -Xms2048m -Xmx2048m -XX:ReservedCodeCacheSize=512m -jar sbt-launch-1.5.4.jar -Dsbt.log.noformat=true clean publishM2

project/Libs.scala

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,37 @@ object Libs {
66
// 1.0.0-M1 does not work with Scala.js js yet
77
val `scala-async` = "org.scala-lang.modules" %% "scala-async" % "0.10.0"
88

9-
val `akka-stream` = "com.typesafe.akka" %% "akka-stream" % "2.6.14"
10-
val `akka-actor-typed` = "com.typesafe.akka" %% "akka-actor-typed" % "2.6.14"
11-
val `akka-actor-testkit-typed` = "com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.6.14"
12-
val `akka-stream-testkit` = "com.typesafe.akka" %% "akka-stream-testkit" % "2.6.14"
9+
private val akkaVersion = "2.6.15"
1310

14-
val `akka-http` = "com.typesafe.akka" %% "akka-http" % "10.2.4"
15-
val `akka-http-testkit` = "com.typesafe.akka" %% "akka-http-testkit" % "10.2.4"
11+
val `akka-stream` = "com.typesafe.akka" %% "akka-stream" % akkaVersion
12+
val `akka-actor-typed` = "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion
13+
val `akka-actor-testkit-typed` = "com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion
14+
val `akka-stream-testkit` = "com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion
1615

17-
val `borer-core` = dep("io.bullet" %%% "borer-core" % "1.7.2")
18-
val `borer-derivation` = dep("io.bullet" %%% "borer-derivation" % "1.7.2")
19-
val `borer-compat-akka` = "io.bullet" %% "borer-compat-akka" % "1.7.2"
16+
private val akkaHttpVersion = "10.2.4"
17+
18+
val `akka-http` = "com.typesafe.akka" %% "akka-http" % akkaHttpVersion
19+
val `akka-http-testkit` = "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion
20+
21+
private val borerVersion = "1.7.2"
22+
val `borer-core` = dep("io.bullet" %%% "borer-core" % borerVersion)
23+
val `borer-derivation` = dep("io.bullet" %%% "borer-derivation" % borerVersion)
24+
val `borer-compat-akka` = "io.bullet" %% "borer-compat-akka" % borerVersion
2025

2126
val `akka-http-cors` = "ch.megard" %% "akka-http-cors" % "1.1.1"
22-
val scalatest = dep("org.scalatest" %%% "scalatest" % "3.2.8")
27+
val scalatest = dep("org.scalatest" %%% "scalatest" % "3.2.9")
2328
val `selenium-3-141` = "org.scalatestplus" %% "selenium-3-141" % "3.2.2.0"
2429
val `scalajs-dom` = dep("org.scala-js" %%% "scalajs-dom" % "1.1.0")
2530

2631
val `tmt-typed` = dep("com.github.mushtaq.tmt-typed" %%% "tmt-typed" % "902393a")
2732

28-
val `rsocket-core` = "io.rsocket" % "rsocket-core" % "1.1.0"
29-
val `rsocket-transport-netty` = "io.rsocket" % "rsocket-transport-netty" % "1.1.0"
33+
private val rsocketVersion = "1.1.1"
34+
val `rsocket-core` = "io.rsocket" % "rsocket-core" % rsocketVersion
35+
val `rsocket-transport-netty` = "io.rsocket" % "rsocket-transport-netty" % rsocketVersion
3036
}
3137

3238
object Prometheus {
33-
val Version = "0.10.0"
39+
val Version = "0.11.0"
3440
val simpleclient = "io.prometheus" % "simpleclient" % Version
3541
val simpleclient_common = "io.prometheus" % "simpleclient_common" % Version
3642
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.2
1+
sbt.version=1.5.4

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
1+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")
22
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
33
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")

0 commit comments

Comments
 (0)