Skip to content

Commit 6075474

Browse files
committed
Start 2.x branch for 2.20
1 parent 1928b88 commit 6075474

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/dep_build_v2.yml

+2
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
name: Trigger v2 dep builds
7777
needs: [build]
7878
# Only for pushes to default branch
79-
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
79+
if: ${{ github.event_name == 'push' && github.ref_name == '2.x' }}
8080
uses: ./.github/workflows/trigger_dep_builds_v2.yml
8181
secrets:
8282
token: ${{ secrets.REPO_DISPATCH }}

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
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.core</groupId>
1515
<artifactId>jackson-databind</artifactId>
16-
<version>2.19.1-SNAPSHOT</version>
16+
<version>2.20.0-SNAPSHOT</version>
1717
<name>jackson-databind</name>
1818
<packaging>jar</packaging>
1919
<description>General data-binding functionality for Jackson: works on core streaming API</description>
@@ -31,7 +31,7 @@
3131
<connection>scm:git:[email protected]:FasterXML/jackson-databind.git</connection>
3232
<developerConnection>scm:git:[email protected]:FasterXML/jackson-databind.git</developerConnection>
3333
<url>https://github.com/FasterXML/jackson-databind</url>
34-
<tag>jackson-databind-2.19.0-rc2</tag>
34+
<tag>HEAD</tag>
3535
</scm>
3636

3737
<properties>

release-notes/VERSION-2.x

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Project: jackson-databind
44
=== Releases ===
55
------------------------------------------------------------------------
66

7+
2.20.0 (not yet released)
8+
9+
-
10+
711
2.19.0 (24-Apr-2025)
812

913
#1467: Support `@JsonUnwrapped` with `@JsonCreator`

0 commit comments

Comments
 (0)