Skip to content

Commit

Permalink
Merge branch 'main' into update/munit-scalacheck-1.0.0-M10
Browse files Browse the repository at this point in the history
  • Loading branch information
ybasket authored Jan 26, 2024
2 parents 7d67486 + 8b2ae91 commit cd1e438
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
scala: [2.12.18, 2.13.11, 3.3.0]
scala: [2.12.18, 2.13.11, 3.3.1]
java: [temurin@8, temurin@11, temurin@17]
project: [rootJS, rootJVM, rootNative]
exclude:
- scala: 2.12.18
java: temurin@11
- scala: 2.12.18
java: temurin@17
- scala: 3.3.0
- scala: 3.3.1
java: temurin@11
- scala: 3.3.0
- scala: 3.3.1
java: temurin@17
- project: rootJS
java: temurin@11
Expand Down Expand Up @@ -300,32 +300,32 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.0, rootJS)
- name: Download target directories (3.3.1, rootJS)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootJS

- name: Inflate target directories (3.3.0, rootJS)
- name: Inflate target directories (3.3.1, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.0, rootJVM)
- name: Download target directories (3.3.1, rootJVM)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootJVM

- name: Inflate target directories (3.3.0, rootJVM)
- name: Inflate target directories (3.3.1, rootJVM)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.0, rootNative)
- name: Download target directories (3.3.1, rootNative)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootNative

- name: Inflate target directories (3.3.0, rootNative)
- name: Inflate target directories (3.3.1, rootNative)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ThisBuild / developers := List(
)

val Scala213 = "2.13.11"
ThisBuild / crossScalaVersions := Seq("2.12.18", Scala213, "3.3.0")
ThisBuild / crossScalaVersions := Seq("2.12.18", Scala213, "3.3.1")
ThisBuild / scalaVersion := Scala213

// ensure missing timezones don't break tests on JS
Expand All @@ -16,12 +16,12 @@ ThisBuild / jsEnv := {

lazy val root = tlCrossRootProject.aggregate(xml, xmlScala, csv, cbor)

val http4sVersion = "0.23.23"
val http4sVersion = "0.23.25"
val scalaXmlVersion = "2.2.0"
val fs2Version = "3.8.0"
val fs2DataVersion = "1.8.1"
val fs2Version = "3.9.4"
val fs2DataVersion = "1.10.0"
val munitVersion = "1.0.0-M10"
val munitCatsEffectVersion = "2.0.0-M3"
val munitCatsEffectVersion = "2.0.0-M4"

lazy val xml = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.crossType(CrossType.Pure)
Expand Down

0 comments on commit cd1e438

Please sign in to comment.