Skip to content

Commit

Permalink
Minor modification wrt #204, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 7, 2020
1 parent 04e3d9c commit 9ab5f66
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,6 @@ public IonFactory copy()
return new IonFactory(this, null);
}

public IonSystem getIonSystem() {
return _system;
}

@Override
public Version version() {
return PackageVersion.VERSION;
Expand Down Expand Up @@ -196,6 +192,14 @@ public JsonGenerator createGenerator(IonWriter out) {
return _createGenerator(out, false, _createContext(out, false), out);
}

// actually added in 2.10.5 / 2.11.1 but officially part of 2.12 API
/**
* @since 2.12
*/
public IonSystem getIonSystem() {
return _system;
}

/**
* @deprecated Since 2.7
*/
Expand Down
9 changes: 7 additions & 2 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ Project: jackson-datatypes-binaryModules:
=== Releases ===
------------------------------------------------------------------------

2.10.5 (not yet released)

#204: (ion) Add `IonFactory.getIonSystem()` accessor
(contributed by Paul F)

2.10.4 (03-May-2020)

#202: Parsing a protobuf message doesn't properly skip unknown fields
#202: (protobuf) Parsing a protobuf message doesn't properly skip unknown fields
(reported by dmitry-timin@github)

2.10.3 (03-Mar-2020)
Expand All @@ -19,7 +24,7 @@ No changes since 2.10.2

2.10.2 (05-Jan-2020)

#189: IonObjectMapper close()s the provided IonWriter unnecessarily
#189: (ion) IonObjectMapper close()s the provided IonWriter unnecessarily
(reported, fix contributed by Zack S)
- ion-java dependency 1.4.0 -> 1.5.1

Expand Down

0 comments on commit 9ab5f66

Please sign in to comment.