Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
find target/scala-*/*coverage-report -type f | zip /tmp/scoverage.zip -@

- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: scoverage
path: /tmp/scoverage.zip
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
echo "jar_path=$jar_path" >> $GITHUB_OUTPUT

- name: Upload JAR artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
env:
JAR_PATH: ${{ steps.find-jar-path.outputs.jar_path }}
SCALA_VERSION: ${{ matrix.scala-version }}
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ inThisBuild(
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
scalaVersion := "3.8.1",
crossScalaVersions := Seq("2.12.21", "2.13.18", "3.8.1"),
scalaVersion := "3.8.2",
crossScalaVersions := Seq("2.12.21", "2.13.18", "3.8.2"),
developers := List(
Developer(
"vmandrychenko",
Expand All @@ -36,7 +36,7 @@ inThisBuild(
)

// Dependencies (intentionally spaced to avoid merge conflicts from GitHub auto-bump bots)
val ScalacticVersion = "3.2.19"
val ScalacticVersion = "3.2.20"

val ScalaCheckVersion = "1.19.0"

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.12.3
sbt.version = 1.12.8
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ThisBuild / version := "2.0.0"
ThisBuild / version := "2.0.1"
ThisBuild / versionScheme := Some("semver-spec")
Loading