Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
regadas committed May 21, 2021
1 parent b78aa45 commit 7976a6b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- "11"
scala:
- "2.12.12"
- "2.13.4"
- "2.13.6"
testWithCoverageReport:
runs-on: ubuntu-latest
steps:
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ lazy val chill = Project(
).settings(sharedSettings)
.settings(
name := "chill",
crossScalaVersions += "2.13.4",
crossScalaVersions += "2.13.6",
mimaPreviousArtifacts := Set("com.twitter" %% "chill" % binaryCompatVersion),
mimaBinaryIssueFilters ++= ignoredABIProblems,
libraryDependencies += "org.apache.xbean" % "xbean-asm7-shaded" % asmVersion
Expand All @@ -190,7 +190,7 @@ def akka(scalaVersion: String) =

lazy val chillAkka = module("akka")
.settings(
crossScalaVersions += "2.13.4",
crossScalaVersions += "2.13.6",
resolvers += Resolver.typesafeRepo("releases"),
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.1",
Expand All @@ -201,7 +201,7 @@ lazy val chillAkka = module("akka")

lazy val chillBijection = module("bijection")
.settings(
crossScalaVersions += "2.13.4",
crossScalaVersions += "2.13.6",
libraryDependencies ++= Seq(
"com.twitter" %% "bijection-core" % bijectionVersion
)
Expand Down Expand Up @@ -247,7 +247,7 @@ lazy val chillThrift = module("thrift").settings(

lazy val chillScrooge = module("scrooge")
.settings(
crossScalaVersions += "2.13.4",
crossScalaVersions += "2.13.6",
libraryDependencies ++= Seq(
("org.apache.thrift" % "libthrift" % "0.13.0").exclude("junit", "junit"),
"com.twitter" %% "scrooge-serializer" % scroogeVersion
Expand Down Expand Up @@ -277,7 +277,7 @@ lazy val chillAvro = module("avro")

lazy val chillAlgebird = module("algebird")
.settings(
crossScalaVersions += "2.13.4",
crossScalaVersions += "2.13.6",
libraryDependencies ++= Seq(
"com.twitter" %% "algebird-core" % algebirdVersion
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
Copyright 2020 Twitter, Inc.
Copyright 2019 Twitter, Inc.
Licensed under the Apache License, Version 3.1 (the "License");
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-3.1
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Copyright 2020Twitter, Inc.
Copyright 2019 Twitter, Inc.
Licensed under the Apache License, Version 2.1(the "License");
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand Down Expand Up @@ -54,6 +54,7 @@ object SerializedExamplesData {
16 -> ("EgECBA==" -> Left(2)),
17 -> ("EwECBA==" -> Right(2)),
// 18 -> ("FAEBAgQ=" -> Vector(2)),
// new vector classes in 2.13 see 144, 145
19 -> ("FQEBAgQ=" -> Set(2)),
20 -> ("FgECAgQCBg==" -> Set(2, 3)),
21 -> ("FwEDAgQCBgII" -> Set(2, 3, 4)),
Expand Down

0 comments on commit 7976a6b

Please sign in to comment.