Skip to content

Commit 2c1ffb4

Browse files
committed
bump versions
1 parent fa8f6b7 commit 2c1ffb4

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [3.3.4]
26+
scala: [3.3.5]
2727
java: [zulu@8, temurin@17]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
matrix:
7575
os: [ubuntu-latest]
76-
scala: [3.3.4]
76+
scala: [3.3.5]
7777
java: [zulu@8]
7878
runs-on: ${{ matrix.os }}
7979
steps:
@@ -101,12 +101,12 @@ jobs:
101101
- name: Setup sbt
102102
uses: sbt/setup-sbt@v1
103103

104-
- name: Download target directories (3.3.4)
104+
- name: Download target directories (3.3.5)
105105
uses: actions/download-artifact@v4
106106
with:
107-
name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }}
107+
name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}
108108

109-
- name: Inflate target directories (3.3.4)
109+
- name: Inflate target directories (3.3.5)
110110
run: |
111111
tar xf targets.tar
112112
rm targets.tar

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ inThisBuild(
33
name := "quotidian",
44
normalizedName := "quotidian",
55
organization := "io.github.kitlangton",
6-
scalaVersion := "3.3.4",
6+
scalaVersion := "3.3.5",
77
homepage := Some(url("https://github.com/kitlangton/quotidian")),
88
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
99
developers := List(
@@ -61,8 +61,8 @@ lazy val core =
6161
.settings(
6262
name := "quotidian",
6363
libraryDependencies ++= Seq(
64-
"dev.zio" %% "zio-test" % "2.1.14" % Test,
65-
"dev.zio" %% "zio-test-sbt" % "2.1.14" % Test,
64+
"dev.zio" %% "zio-test" % "2.1.16" % Test,
65+
"dev.zio" %% "zio-test-sbt" % "2.1.16" % Test,
6666
"com.lihaoyi" %% "pprint" % "0.9.0"
6767
),
6868
scalacOptions ++= Seq(
@@ -80,9 +80,9 @@ lazy val examples = (crossProject(JVMPlatform).crossType(CrossType.Pure) in file
8080
name := "quotidian-examples",
8181
publish / skip := true,
8282
libraryDependencies ++= Seq(
83-
"dev.zio" %% "zio" % "2.1.14",
84-
"dev.zio" %% "zio-test" % "2.1.14" % Test,
85-
"dev.zio" %% "zio-test-sbt" % "2.1.14" % Test
83+
"dev.zio" %% "zio" % "2.1.16",
84+
"dev.zio" %% "zio-test" % "2.1.16" % Test,
85+
"dev.zio" %% "zio-test-sbt" % "2.1.16" % Test
8686
),
8787
scalacOptions ++= Seq(
8888
"-deprecation",

project/plugins.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")
2-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1")
2+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
33
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
44
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
5-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6")
6-
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
7-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.3")
8-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.0")
5+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.7")
6+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")
7+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
8+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.2")

0 commit comments

Comments
 (0)