File tree 3 files changed +20
-7
lines changed
3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,23 @@ Authors:
13
13
14
14
Contributors :
15
15
16
+ Elisha Peterson (triathematician@github)
17
+ * Reported #409 : `module-info.java` missing "exports"
18
+ (2.12.2 )
19
+
16
20
Wolfgang Jung (elektro-wolle@github)
17
21
* Fixed inline class serialization
18
22
(2.12.1 )
19
23
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
+
20
33
Hideaki Tanabe (tanabe@github)
21
34
* Brought README.md into the modern world of Gradle (compile -> implementation)
22
35
(2.12.0 )
@@ -65,10 +78,3 @@ Drew Stephens (dinomite@github)
65
78
* Contributed fix for #281 : KotlinObjectSingletonDeserializer fails to deserialize
66
79
previously serialized JSON as it doesn't delegate deserializeWithType
67
80
(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 )
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ Co-maintainers:
14
14
= == Releases == =
15
15
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
16
16
17
+ 2.12 .2 (not yet released )
18
+
19
+ #409 : `module - info .java ` missing "exports"
20
+ (reported by Elisha P )
21
+
17
22
2.12 .1 (08 - Jan - 2021 )
18
23
19
24
#402 : Remove implicitly-included `java.base` dep in `module-info.java`
Original file line number Diff line number Diff line change 7
7
requires com .fasterxml .jackson .annotation ;
8
8
requires com .fasterxml .jackson .databind ;
9
9
10
+ exports com .fasterxml .jackson .module .kotlin ;
11
+
10
12
provides com .fasterxml .jackson .databind .Module with
11
13
com .fasterxml .jackson .module .kotlin .KotlinModule ;
12
14
}
You can’t perform that action at this time.
0 commit comments