Skip to content

Commit

Permalink
Bump libraries (#345)
Browse files Browse the repository at this point in the history
* Bump libraries

* Bump ver

* Bump ci.yml

* Bump scoverage

* Bump scalac
  • Loading branch information
vilunov authored Sep 30, 2024
1 parent 356e538 commit 35fa9d0
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
matrix:
scala:
- 2.13.7
- 2.12.15
- 2.13.15
- 2.12.20

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ val commonSettings = Seq(
organizationName := "Evolution",
organizationHomepage := Some(url("http://evolution.com")),
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq("2.13.7", "2.12.15"),
crossScalaVersions := Seq("2.13.15", "2.12.20"),
releaseCrossBuild := true,
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT"))),
publishTo := Some(Resolver.evolutionReleases),
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object Dependencies {
val `cats-helper` = "com.evolutiongaming" %% "cats-helper" % "2.11.0"
val random = "com.evolutiongaming" %% "random" % "0.1.1"
val configTools = "com.evolutiongaming" %% "config-tools" % "1.0.4"
val skafka = "com.evolutiongaming" %% "skafka" % "11.16.0"
val skafka = "com.evolutiongaming" %% "skafka" % "11.18.0"

object Cats {
private val version = "2.7.0"
Expand All @@ -25,14 +25,14 @@ object Dependencies {
}

object PlayJsonTools {
private val version = "0.11.0"
private val version = "1.1.1"

val tools = "com.evolutiongaming" %% "play-json-tools" % version
val tools = "com.evolution" %% "play-json-tools" % version
}

object Circe {
private val version = "0.12.3"
private val versionExtras = "0.12.2"
private val version = "0.14.9"
private val versionExtras = "0.14.1"

val core = "io.circe" %% "circe-core" % version
val generic = "io.circe" %% "circe-generic" % version
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.0
sbt.version=1.10.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.evolutiongaming.stracer

import com.evolution.playjson.tools.PlayJsonHelper._
import com.evolutiongaming.stracer.hex.{FromHex, ToHex}
import com.evolutiongaming.playjsontools.PlayJsonHelper._
import play.api.libs.json._

object TraceJson {
Expand Down Expand Up @@ -34,7 +34,7 @@ object TraceJson {

def jsResult: JsResult[A] = self match {
case Right(a) => JsSuccess(a)
case Left(a) => JsError(a)
case Left(a) => JsError(a)
}
}
}
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "2.4.2-SNAPSHOT"
ThisBuild / version := "2.5.0"

0 comments on commit 35fa9d0

Please sign in to comment.