Skip to content

Commit

Permalink
Bump Avro to 1.12.0 (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
nevillelyh authored Aug 22, 2024
1 parent 8e78031 commit 546fad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ object AvroTypeSpec extends Properties("AvroType") {

implicit def compareByteArrays(x: Array[Byte], y: Array[Byte]) = java.util.Arrays.equals(x, y)
implicit def compareIntArrays(x: Array[Int], y: Array[Int]) = java.util.Arrays.equals(x, y)
implicit def compareDouble(x: Double, y: Double) = x.toFloat == y.toFloat

def roundTrip[A: TypeTag, L <: HList](m: A)(implicit
gen: LabelledGeneric.Aux[A, L],
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "shapeless-datatype"
description := "Shapeless utilities for common data types"

val avroVersion = "1.11.3"
val avroVersion = "1.12.0"
val bigqueryVersion = "v2-rev20240803-2.0.0"
val datastoreVersion = "2.21.1"
val jacksonVersion = "2.17.2"
Expand Down

0 comments on commit 546fad1

Please sign in to comment.