Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump libraries #345

Merged
merged 7 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.14", "2.12.15"),
mr-git marked this conversation as resolved.
Show resolved Hide resolved
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
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"