Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kitlangton committed Jun 9, 2024
1 parent 716d276 commit c65237f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.4.1]
scala: [3.3.3]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import org.scalajs.linker.interface.ModuleSplitStyle
import sbtcrossproject.CrossPlugin.autoImport.crossProject

val scala3 = "3.3.3"

inThisBuild(
List(
name := "animus",
normalizedName := "animus",
organization := "com.kitlangton",
scalaVersion := "3.4.1",
crossScalaVersions := Seq("3.3.3"),
scalaVersion := scala3,
crossScalaVersions := Seq(scala3),
organization := "io.github.kitlangton",
homepage := Some(url("https://github.com/kitlangton/animus")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
Expand Down Expand Up @@ -57,7 +59,7 @@ lazy val scalacSettings =
"-feature" ::
Nil

val zioVersion = "2.1.0"
val zioVersion = "2.1.2"
val laminarVersion = "17.0.0"

lazy val commonSettings = Seq(
Expand Down Expand Up @@ -110,7 +112,7 @@ lazy val example = project
skip / publish := true,
libraryDependencies ++= Seq(
"dev.zio" %%% "zio" % zioVersion,
"dev.zio" %%% "zio-json" % "0.6.2"
"dev.zio" %%% "zio-json" % "0.7.0"
)
)
.enablePlugins(ScalaJSPlugin)

0 comments on commit c65237f

Please sign in to comment.