Skip to content

Commit

Permalink
Prepare for 2.13.4.2 to address #3627
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 13, 2022
1 parent ce50e4c commit 702d690
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
19 changes: 16 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<parent>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-base</artifactId>
<version>2.13.5-SNAPSHOT</version>
<version>2.13.4</version>
</parent>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.5-SNAPSHOT</version>
<version>2.13.4.2-SNAPSHOT</version>
<name>jackson-databind</name>
<packaging>bundle</packaging>
<description>General data-binding functionality for Jackson: works on core streaming API</description>
Expand All @@ -26,7 +26,7 @@
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git@github.com:FasterXML/jackson-databind.git</connection>
<developerConnection>scm:git:git@github.com:FasterXML/jackson-databind.git</developerConnection>
Expand Down Expand Up @@ -204,6 +204,19 @@
<plugin>
<groupId>de.jjohannes</groupId>
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
<!-- 13-Oct-2022, tatu: to resolve
https://github.com/FasterXML/jackson-databind/issues/3627
will need this locally, for now:
-->
<configuration>
<platformDependencies>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${project.parent.version}</version>
</dependency>
</platformDependencies>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
6 changes: 6 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Project: jackson-databind
=== Releases ===
------------------------------------------------------------------------

2.13.4.2 (13-Oct-2022)

#3627: Gradle module metadata for `2.13.4.1` references non-existent
jackson-bom `2.13.4.1` (instead of `2.13.4.20221012`)
(NOTE: root cause is [jackson-bom#52])

2.13.4.1 (12-Oct-2022)

#3590: Add check in primitive value deserializers to avoid deep wrapper array
Expand Down

0 comments on commit 702d690

Please sign in to comment.