Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
Mark #60 as fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 30, 2015
1 parent c731053 commit 33b4ce3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ used to enhance access functionality using bytecode generation.
<properties>
<!-- annotations more stable, no patch versions -->
<jackson.annotation.version>2.6.0</jackson.annotation.version>
<jackson.core.version>2.6.2</jackson.core.version>
<jackson.core.version>2.6.3-SNAPSHOT</jackson.core.version>

<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>com/fasterxml/jackson/module/afterburner</packageVersion.dir>
Expand Down
5 changes: 5 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Project: jackson-module-afterburner
=== Releases ===
------------------------------------------------------------------------

2.6.3 (not yet released)

#60: Cannot read some "pretty" documents (NOTE: actually fixed by [jackson-core#220] in 2.6.3)
(reported by lehcim@github)

2.6.2 (15-Sep-2015)

#56: Afterburner does not respect DeserializationFeature.UNWRAP_SINGLE_VALUE_ARRAYS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public void testBooleans() throws Exception
assertEquals(Boolean.TRUE, bean._b);
}

// for [module-afterburner#60]
// for [module-afterburner#60] (caused by a bug in jackson-core up to 2.6.2, fixed in 2.6.3)
public void testProblemWithIndentation() throws Exception {
final String JSON = "{\n"
+" \"foos\" :\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
import java.io.IOException;

import com.fasterxml.jackson.core.*;

import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.fasterxml.jackson.databind.module.SimpleModule;

import com.fasterxml.jackson.module.afterburner.AfterburnerTestBase;

@SuppressWarnings("serial")
Expand Down

0 comments on commit 33b4ce3

Please sign in to comment.