Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

Update scala3-library, ... to 3.1.0 #173

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.13, 2.13.5, 3.0.2]
scala: [2.12.13, 2.13.5, 3.1.0]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.0.2]
scala: [3.1.0]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -119,12 +119,12 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.0.2)
- name: Download target directories (3.1.0)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.0.2-${{ matrix.java }}
name: target-${{ matrix.os }}-3.1.0-${{ matrix.java }}

- name: Inflate target directories (3.0.2)
- name: Inflate target directories (3.1.0)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ThisBuild / organizationName := "Scodec"
ThisBuild / homepage := Some(url("https://github.com/scodec/scodec-stream"))
ThisBuild / startYear := Some(2013)

ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5", "3.0.2")
ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5", "3.1.0")

ThisBuild / strictSemVer := false

Expand Down