Skip to content

Commit 11ec0c0

Browse files
committed
prep 3.0.0-rc4 release
1 parent 8d54452 commit 11ec0c0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.12.20, 2.13.16, 3.3.5]
26+
scala: [2.12.20, 2.13.16, 3.3.6]
2727
java: [zulu@17, zulu@21]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -121,12 +121,12 @@ jobs:
121121
tar xf targets.tar
122122
rm targets.tar
123123
124-
- name: Download target directories (3.3.5)
124+
- name: Download target directories (3.3.6)
125125
uses: actions/download-artifact@v4
126126
with:
127-
name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}
127+
name: target-${{ matrix.os }}-3.3.6-${{ matrix.java }}
128128

129-
- name: Inflate target directories (3.3.5)
129+
- name: Inflate target directories (3.3.6)
130130
run: |
131131
tar xf targets.tar
132132
rm targets.tar

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ name := "jackson-module-scala"
66

77
organization := "tools.jackson.module"
88

9-
ThisBuild / version := "3.0.0-rc4-SNAPSHOT"
9+
ThisBuild / version := "3.0.0-rc4"
1010

1111
val scala213Version = "2.13.16"
1212
ThisBuild / scalaVersion := scala213Version
1313

14-
ThisBuild / crossScalaVersions := Seq("2.12.20", scala213Version, "3.3.5")
14+
ThisBuild / crossScalaVersions := Seq("2.12.20", scala213Version, "3.3.6")
1515

1616
sonatypeCredentialHost := "s01.oss.sonatype.org"
1717
sonatypeRepository := "s01.oss.sonatype.org"
1818

19-
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
19+
// resolvers ++= Resolver.sonatypeOssRepos("snapshots")
2020

2121
bomFormat := "xml"
2222

0 commit comments

Comments
 (0)