Skip to content

Commit 90b7587

Browse files
committed
Start 2.x branch for 2.20
1 parent 1fa5913 commit 90b7587

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 3 additions & 1 deletion
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@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
2527
with:

.github/workflows/main.yml

Lines changed: 3 additions & 7 deletions
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/*"
@@ -20,7 +16,7 @@ env:
2016
JODA_MAX: '2.12.7'
2117
jobs:
2218
build:
23-
runs-on: 'ubuntu-22.04'
19+
runs-on: 'ubuntu-24.04'
2420
strategy:
2521
fail-fast: false
2622
matrix:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<parent>
1010
<groupId>com.fasterxml.jackson</groupId>
1111
<artifactId>jackson-base</artifactId>
12-
<version>2.19.1-SNAPSHOT</version>
12+
<version>2.20.0-SNAPSHOT</version>
1313
</parent>
1414
<groupId>com.fasterxml.jackson.datatype</groupId>
1515
<artifactId>jackson-datatype-joda</artifactId>
1616
<name>Jackson datatype: Joda</name>
17-
<version>2.19.1-SNAPSHOT</version>
17+
<version>2.20.0-SNAPSHOT</version>
1818
<packaging>jar</packaging>
1919
<description>Add-on module for Jackson (https://github.com/FasterXML/jackson) to support Joda (https://www.joda.org/joda-time/) data types.
2020
</description>

0 commit comments

Comments
 (0)