Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Bump to Scala 3.0.1 (#24)
Browse files Browse the repository at this point in the history
* bump scala version

* update ci
  • Loading branch information
anthony2025 authored Aug 20, 2021
1 parent ae1e6f6 commit 4ff8971
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: pull_request
env:
CI: true
CI_SNAPSHOT_RELEASE: +publishSigned
SCALA_VERSION: 3.0.0
SCALA_VERSION: 3.0.1

jobs:
validate:
Expand All @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
java: [[email protected], [email protected], [email protected], [email protected]]
scala: [2.12.14, 2.13.6, 3.0.0]
scala: [2.12.14, 2.13.6, 3.0.1]
env:
SCALA_VERSION: ${{ matrix.scala }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CI: true
SCALA_VERSION: 3.0.0
SCALA_VERSION: 3.0.1

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.0.0-RC6
version = 3.0.0
runner.dialect = scala3

maxColumn = 100
Expand Down
17 changes: 4 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
val catsV = "2.6.1"
val catsEffectV = "3.2.2"
val catsEffectV = "3.2.3"
val fs2V = "3.1.0"
val circeV = "0.14.1"
val munitV = "0.7.27"
val munitV = "0.7.28"
val munitCatsEffectV = "1.0.5"
val kindProjectorV = "0.13.0"

Expand Down Expand Up @@ -80,7 +80,7 @@ lazy val commonSettings = Seq(
headerLicense := Some(HeaderLicense.ALv2("2020", "Jack Henry & Associates, Inc.®")),
crossScalaVersions := Seq(scalaVersion.value, "2.13.6", "2.12.14"),
libraryDependencies ++= Seq(
"com.azure" % "azure-cosmos" % "4.17.0",
"com.azure" % "azure-cosmos" % "4.18.0",
"com.microsoft.azure" % "azure-documentdb" % "2.6.4",
"com.microsoft.azure" % "documentdb-bulkexecutor" % "2.12.4",
"org.typelevel" %% "cats-core" % catsV,
Expand Down Expand Up @@ -114,7 +114,7 @@ Compile / scalacOptions ++= Seq(
// General Settings
inThisBuild(
List(
scalaVersion := "3.0.0",
scalaVersion := "3.0.1",
developers := List(
Developer(
"ChristopherDavenport",
Expand Down Expand Up @@ -146,12 +146,3 @@ inThisBuild(
organizationName := "Jack Henry & Associates, Inc.®"
)
)

// scaladoc for dotty is still in development
Compile / doc / sources := {
val old = (Compile / doc / sources).value
if (scalaVersion.value.startsWith("3"))
Seq()
else
old
}

0 comments on commit 4ff8971

Please sign in to comment.