Skip to content

Commit 583a472

Browse files
authored
Merge pull request #3227 from typelevel/update/scala3-library-3.3.0
Update scala3-library, ... to 3.3.0
2 parents 69dec86 + 3aa3b20 commit 583a472

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest, macos-latest]
31-
scala: [3.2.2, 2.12.17, 2.13.10]
31+
scala: [3.3.0, 2.12.17, 2.13.10]
3232
java: [temurin@17]
3333
project: [rootJS, rootJVM, rootNative]
3434
exclude:
35-
- scala: 3.2.2
35+
- scala: 3.3.0
3636
os: macos-latest
3737
- scala: 2.12.17
3838
os: macos-latest
@@ -169,32 +169,32 @@ jobs:
169169
~/Library/Caches/Coursier/v1
170170
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
171171

172-
- name: Download target directories (3.2.2, rootJS)
172+
- name: Download target directories (3.3.0, rootJS)
173173
uses: actions/download-artifact@v3
174174
with:
175-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS
175+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJS
176176

177-
- name: Inflate target directories (3.2.2, rootJS)
177+
- name: Inflate target directories (3.3.0, rootJS)
178178
run: |
179179
tar xf targets.tar
180180
rm targets.tar
181181
182-
- name: Download target directories (3.2.2, rootJVM)
182+
- name: Download target directories (3.3.0, rootJVM)
183183
uses: actions/download-artifact@v3
184184
with:
185-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM
185+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJVM
186186

187-
- name: Inflate target directories (3.2.2, rootJVM)
187+
- name: Inflate target directories (3.3.0, rootJVM)
188188
run: |
189189
tar xf targets.tar
190190
rm targets.tar
191191
192-
- name: Download target directories (3.2.2, rootNative)
192+
- name: Download target directories (3.3.0, rootNative)
193193
uses: actions/download-artifact@v3
194194
with:
195-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative
195+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootNative
196196

197-
- name: Inflate target directories (3.2.2, rootNative)
197+
- name: Inflate target directories (3.3.0, rootNative)
198198
run: |
199199
tar xf targets.tar
200200
rm targets.tar

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import com.typesafe.tools.mima.core._
22

33
Global / onChangedBuildSource := ReloadOnSourceChanges
44

5-
ThisBuild / tlBaseVersion := "3.7"
5+
ThisBuild / tlBaseVersion := "3.8"
66

77
ThisBuild / organization := "co.fs2"
88
ThisBuild / organizationName := "Functional Streams for Scala"
99
ThisBuild / startYear := Some(2013)
1010

1111
val NewScala = "2.13.10"
1212

13-
ThisBuild / crossScalaVersions := Seq("3.2.2", "2.12.17", NewScala)
13+
ThisBuild / crossScalaVersions := Seq("3.3.0", "2.12.17", NewScala)
1414
ThisBuild / tlVersionIntroduced := Map("3" -> "3.0.3")
1515

1616
ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-latest")

0 commit comments

Comments
 (0)