Skip to content

Commit 6eb86cd

Browse files
committed
Prepare for 2.11.0 release
1 parent c5fb4d1 commit 6eb86cd

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.fasterxml.jackson</groupId>
66
<artifactId>jackson-base</artifactId>
7-
<version>2.11.0-SNAPSHOT</version>
7+
<version>2.11.0</version>
88
</parent>
99
<groupId>com.fasterxml.jackson.datatype</groupId>
1010
<artifactId>jackson-datatype-joda</artifactId>

release-notes/VERSION-2.x

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Project: jackson-datatype-joda
44
=== Releases ===
55
------------------------------------------------------------------------
66

7-
2.11.0 (not yet released)
7+
2.11.1 (not yet released)
8+
9+
-
10+
11+
2.11.0 (26-Apr-2020)
812

913
#104: Deserializing Interval discards timezone information
1014
(contributed by Richard W)

src/main/java/com/fasterxml/jackson/datatype/joda/JodaMapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public JodaMapper() {
1515
* Convenience method that is shortcut for:
1616
*<pre>
1717
* module.isEnabled(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
18-
*<pre>
18+
*</pre>
1919
*/
2020
public boolean getWriteDatesAsTimestamps() {
2121
return getSerializationConfig().isEnabled(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
@@ -25,7 +25,7 @@ public boolean getWriteDatesAsTimestamps() {
2525
* Convenience method that is shortcut for:
2626
*<pre>
2727
* configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, state)
28-
*<pre>
28+
*</pre>
2929
*/
3030
public void setWriteDatesAsTimestamps(boolean state) {
3131
configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, state);

0 commit comments

Comments
 (0)