Skip to content

Commit

Permalink
bump ZIO to 1.0.0 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
runtologist authored Aug 4, 2020
1 parent b84f7df commit 9532df9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ scala_211: &scala_211
SCALA_VERSION: 2.11.12

scala_212: &scala_212
SCALA_VERSION: 2.12.11
SCALA_VERSION: 2.12.12

scala_213: &scala_213
SCALA_VERSION: 2.13.2
SCALA_VERSION: 2.13.3

scala_dotty: &scala_dotty
SCALA_VERSION: 0.23.0-RC1
SCALA_VERSION: 0.26.0-RC1

jdk_8: &jdk_8
JDK_VERSION: 8
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ inThisBuild(
addCommandAlias("fmt", "all scalafmtSbt scalafmt test:scalafmt")
addCommandAlias("check", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck")

val zioVersion = "1.0.0-RC21-2"
val zioVersion = "1.0.0"
val rsVersion = "1.0.3"
val collCompatVersion = "2.1.6"

Expand Down
4 changes: 2 additions & 2 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object BuildHelper {
buildInfoObject := "BuildInfoInteropReactiveStreams"
)

val dottyVersion = "0.23.0-RC1"
val dottyVersion = "0.26.0-RC1"

def extraOptions(scalaVersion: String) =
CrossVersion.partialVersion(scalaVersion) match {
Expand Down Expand Up @@ -76,7 +76,7 @@ object BuildHelper {
def stdSettings(prjName: String) = Seq(
name := s"$prjName",
scalacOptions := stdOptions,
crossScalaVersions := Seq("2.13.2", "2.12.11", "2.11.12", dottyVersion),
crossScalaVersions := Seq("2.13.3", "2.12.12", "2.11.12", dottyVersion),
scalaVersion in ThisBuild := crossScalaVersions.value.head,
scalacOptions := stdOptions ++ extraOptions(scalaVersion.value),
parallelExecution in Test := true,
Expand Down

0 comments on commit 9532df9

Please sign in to comment.