Skip to content

Commit a0521f7

Browse files
committed
Start 2.x for 2.20
1 parent f60103a commit a0521f7

File tree

8 files changed

+14
-16
lines changed

8 files changed

+14
-16
lines changed

.github/workflows/dep_build_v2.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
build:
1313
# Do we want wide matrix build? For now, limited
14-
runs-on: 'ubuntu-22.04'
14+
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -20,6 +20,8 @@ jobs:
2020
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
with:
24+
ref: 2.x
2325
- name: Set up JDK
2426
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2527
with:

.github/workflows/main.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
name: Build and Deploy Snapshot
22
on:
33
push:
4-
branches:
5-
- 3.x
6-
- "2.19"
4+
branches: [2.*]
75
paths-ignore:
86
- "README.md"
97
- "release-notes/*"
108
pull_request:
11-
branches:
12-
- 3.x
13-
- "2.19"
9+
branches: [2.*]
1410
paths-ignore:
1511
- "README.md"
1612
- "release-notes/*"
@@ -19,7 +15,7 @@ permissions:
1915

2016
jobs:
2117
build:
22-
runs-on: 'ubuntu-22.04'
18+
runs-on: 'ubuntu-24.04'
2319
strategy:
2420
fail-fast: false
2521
matrix:

avro/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.dataformat</groupId>
1111
<artifactId>jackson-dataformats-binary</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<artifactId>jackson-dataformat-avro</artifactId>
1515
<name>Jackson dataformat: Avro</name>

cbor/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.dataformat</groupId>
1111
<artifactId>jackson-dataformats-binary</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<artifactId>jackson-dataformat-cbor</artifactId>
1515
<name>Jackson dataformat: CBOR</name>

ion/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.dataformat</groupId>
1111
<artifactId>jackson-dataformats-binary</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.dataformat</groupId>
1515
<artifactId>jackson-dataformat-ion</artifactId>

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.fasterxml.jackson</groupId>
66
<artifactId>jackson-base</artifactId>
7-
<version>2.19.1-SNAPSHOT</version>
7+
<version>2.20.0-SNAPSHOT</version>
88
</parent>
99
<groupId>com.fasterxml.jackson.dataformat</groupId>
1010
<artifactId>jackson-dataformats-binary</artifactId>
1111
<name>Jackson dataformats: Binary</name>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
<packaging>pom</packaging>
1414
<description>Parent pom for Jackson binary dataformats.
1515
</description>
@@ -45,7 +45,7 @@
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4646

4747
<!-- for Reproducible Builds -->
48-
<project.build.outputTimestamp>2025-04-25T00:11:50Z</project.build.outputTimestamp>
48+
<project.build.outputTimestamp>2025-04-25T00:21:23Z</project.build.outputTimestamp>
4949

5050
<!-- 20-Mar-2021, tatu: limit heap for tests to catch some
5151
of "too big allocation" cases

protobuf/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.dataformat</groupId>
1111
<artifactId>jackson-dataformats-binary</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<artifactId>jackson-dataformat-protobuf</artifactId>
1515
<name>Jackson dataformat: Protobuf</name>

smile/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson.dataformat</groupId>
1111
<artifactId>jackson-dataformats-binary</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<artifactId>jackson-dataformat-smile</artifactId>
1515
<name>Jackson dataformat: Smile</name>

0 commit comments

Comments
 (0)