Skip to content

Commit 5794694

Browse files
committed
Fix #409
1 parent e8f98f8 commit 5794694

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

release-notes/CREDITS-2.x

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,23 @@ Authors:
1313

1414
Contributors:
1515

16+
Elisha Peterson (triathematician@github)
17+
* Reported #409: `module-info.java` missing "exports"
18+
(2.12.2)
19+
1620
Wolfgang Jung (elektro-wolle@github)
1721
* Fixed inline class serialization
1822
(2.12.1)
1923

24+
John Flynn (Neuman968@github)
25+
* Contributed extension methods for SimpleModule to add serializer and deserializer
26+
extension functions for KClass #322
27+
(2.12.0)
28+
29+
Mateusz Stefek (MateuszStefek@github)
30+
* Reported #321: Make MissingKotlinParameterException a descendant of MismatchedInputException
31+
(2.12.0)
32+
2033
Hideaki Tanabe (tanabe@github)
2134
* Brought README.md into the modern world of Gradle (compile -> implementation)
2235
(2.12.0)
@@ -65,10 +78,3 @@ Drew Stephens (dinomite@github)
6578
* Contributed fix for #281: KotlinObjectSingletonDeserializer fails to deserialize
6679
previously serialized JSON as it doesn't delegate deserializeWithType
6780
(2.11.0)
68-
69-
Mateusz Stefek (MateuszStefek@github)
70-
* Reported #321: Make MissingKotlinParameterException a descendant of MismatchedInputException
71-
72-
John Flynn (Neuman968@github)
73-
* Contributed extension methods for SimpleModule to add serializer and deserializer extension functions for KClass #322
74-
(2.12.x)

release-notes/VERSION-2.x

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ Co-maintainers:
1414
=== Releases ===
1515
------------------------------------------------------------------------
1616

17+
2.12.2 (not yet released)
18+
19+
#409: `module-info.java` missing "exports"
20+
(reported by Elisha P)
21+
1722
2.12.1 (08-Jan-2021)
1823

1924
#402: Remove implicitly-included `java.base` dep in `module-info.java`

src/moditect/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
requires com.fasterxml.jackson.annotation;
88
requires com.fasterxml.jackson.databind;
99

10+
exports com.fasterxml.jackson.module.kotlin;
11+
1012
provides com.fasterxml.jackson.databind.Module with
1113
com.fasterxml.jackson.module.kotlin.KotlinModule;
1214
}

0 commit comments

Comments
 (0)