From 7d737db0fb37ea61319361ba29a106d7e597bd06 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 2 Aug 2020 11:06:00 -0700 Subject: minor test change --- .../fasterxml/jackson/failing/JsonIgnoreProperties2803Test.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/test/java/com/fasterxml/jackson/failing/JsonIgnoreProperties2803Test.java b/src/test/java/com/fasterxml/jackson/failing/JsonIgnoreProperties2803Test.java index 34b50878b..ca59b5d7c 100644 --- a/src/test/java/com/fasterxml/jackson/failing/JsonIgnoreProperties2803Test.java +++ b/src/test/java/com/fasterxml/jackson/failing/JsonIgnoreProperties2803Test.java @@ -18,8 +18,8 @@ public class JsonIgnoreProperties2803Test extends BaseMapTest } static class Room2803 { - public String id; public Building2803 something; + public String id; } private final ObjectMapper MAPPER = newJsonMapper(); @@ -31,6 +31,11 @@ public class JsonIgnoreProperties2803Test extends BaseMapTest // Important! Must do both calls, in this order Museum2803 museum = MAPPER.readValue(DOC, Museum2803.class); + assertNotNull(museum); +//System.err.println(); +//System.err.println("------------------------------"); +//System.err.println(); Building2803 building = MAPPER.readValue(DOC, Building2803.class); + assertNotNull(building); } } -- cgit v1.2.3 From b299566351205b205aa773e68bbf42bc6602c66b Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 2 Aug 2020 11:15:09 -0700 Subject: Prepare for 2.11.2 release --- pom.xml | 2 +- release-notes/VERSION-2.x | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b53cf9cd3..495266c18 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.fasterxml.jackson jackson-base - 2.11.2-SNAPSHOT + 2.11.2 com.fasterxml.jackson.core diff --git a/release-notes/VERSION-2.x b/release-notes/VERSION-2.x index d1182d17f..a8924c87c 100644 --- a/release-notes/VERSION-2.x +++ b/release-notes/VERSION-2.x @@ -4,7 +4,7 @@ Project: jackson-databind === Releases === ------------------------------------------------------------------------ -2.11.2 (not yet released) +2.11.2 (02-Aug-2020) #2783: Parser/Generator features not set when using `ObjectMapper.createParser()`, `createGenerator()` -- cgit v1.2.3 From 49e1c0e457beeead0525eda4e8214be5bb880287 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 2 Aug 2020 11:35:41 -0700 Subject: [maven-release-plugin] prepare release jackson-databind-2.11.2 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 495266c18..8a0499fd2 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.fasterxml.jackson.core jackson-databind - 2.11.2-SNAPSHOT + 2.11.2 jackson-databind bundle General data-binding functionality for Jackson: works on core streaming API @@ -28,7 +28,7 @@ scm:git:git@github.com:FasterXML/jackson-databind.git scm:git:git@github.com:FasterXML/jackson-databind.git http://github.com/FasterXML/jackson-databind - HEAD + jackson-databind-2.11.2 -- cgit v1.2.3 From e5ae8c87760dfce946cccaf02e7dce7c901b62fa Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 2 Aug 2020 11:35:51 -0700 Subject: [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8a0499fd2..e9bd0fe9c 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.fasterxml.jackson.core jackson-databind - 2.11.2 + 2.11.3-SNAPSHOT jackson-databind bundle General data-binding functionality for Jackson: works on core streaming API @@ -28,7 +28,7 @@ scm:git:git@github.com:FasterXML/jackson-databind.git scm:git:git@github.com:FasterXML/jackson-databind.git http://github.com/FasterXML/jackson-databind - jackson-databind-2.11.2 + HEAD -- cgit v1.2.3 From 24bfc4cc85e7b83e8f39db91fc0a745d7ab7a233 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 2 Aug 2020 11:39:13 -0700 Subject: Back to snapshots --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e9bd0fe9c..2e762c7ae 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.fasterxml.jackson jackson-base - 2.11.2 + 2.11.3-SNAPSHOT com.fasterxml.jackson.core -- cgit v1.2.3