Skip to content

Commit 525c941

Browse files
committed
Prepare for 1.0.2 release
1 parent b959a61 commit 525c941

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

pom.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<parent>
44
<groupId>com.fasterxml</groupId>
55
<artifactId>oss-parent</artifactId>
6-
<version>24</version>
6+
<version>38</version>
77
</parent>
88
<groupId>com.fasterxml.util</groupId>
99
<artifactId>java-merge-sort</artifactId>
1010
<name>java-merge-sort</name>
11-
<version>1.1.0-SNAPSHOT</version>
11+
<version>1.0.2-SNAPSHOT</version>
1212
<packaging>bundle</packaging>
1313
<description>Basic configurable disk-backed N-way merge sort
1414
</description>
@@ -37,6 +37,9 @@
3737
<properties>
3838
<javac.src.version>1.6</javac.src.version>
3939
<javac.target.version>1.6</javac.target.version>
40+
41+
<!-- 1.0.2 adds "Automatic-Module-Name" for JDK 9 -->
42+
<jdk.module.name>com.fasterxml.sort</jdk.module.name>
4043
</properties>
4144

4245
<dependencyManagement>
@@ -45,7 +48,7 @@
4548
<groupId>com.fasterxml.jackson</groupId>
4649
<artifactId>jackson-bom</artifactId>
4750
<type>pom</type>
48-
<version>2.8.6</version>
51+
<version>2.9.9</version>
4952
<scope>import</scope>
5053
</dependency>
5154
</dependencies>
@@ -56,7 +59,7 @@
5659
<dependency>
5760
<groupId>junit</groupId>
5861
<artifactId>junit</artifactId>
59-
<version>4.11</version>
62+
<version>4.12</version>
6063
<scope>test</scope>
6164
</dependency>
6265

@@ -86,7 +89,7 @@
8689
<target>${version.jdk}</target>
8790
<encoding>UTF-8</encoding>
8891
<links>
89-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
92+
<link>http://docs.oracle.com/javase/8/docs/api/</link>
9093
</links>
9194
</configuration>
9295

@@ -105,10 +108,10 @@
105108
<plugin>
106109
<groupId>org.apache.felix</groupId>
107110
<artifactId>maven-bundle-plugin</artifactId>
108-
<version>2.3.7</version>
109111
<extensions>true</extensions>
110112
<configuration>
111113
<instructions>
114+
<Automatic-Module-Name>${jdk.module.name}</Automatic-Module-Name>
112115
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
113116
<Bundle-Vendor>com.fasterxml</Bundle-Vendor>
114117
<Import-Package>

release-notes/CREDITS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ Nathan Williams (nathanlws@github)
1414
Mathias Herberts (hbs@github)
1515
* Reported #14: Long lines are corrupted when read by `RawTextLineReader._readNextSlow()`
1616
(1.0.1)
17+
18+
john lilley (wheezil@github)
19+
* Reported, contributed fix for #16: Temp files that result from two-phase merge are not deleted
20+
(1.0.2)

release-notes/VERSION

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
Project: java-merge-sort
22
License: Apache License 2.0
3-
Version: 1.0.1
4-
Release date: 14-Feb-2017
3+
Version: 1.0.2
4+
Release date: 2019-09-18
55

6-
#14: Long lines are corrupted when read by `RawTextLineReader._readNextSlow()`
7-
(reported by Mathias H, hbs@github)
6+
#16: Temp files that result from two-phase merge are not deleted
7+
(reported, fix contributed by John L)
8+
- Add `Automatic-Module-Name` of "com.fasterxml.sort"
89

910
------------------------------------------------------------------------
1011
=== History: ===
1112
------------------------------------------------------------------------
1213

14+
1.0.1 (2017-02-14)
15+
16+
#14: Long lines are corrupted when read by `RawTextLineReader._readNextSlow()`
17+
(reported by Mathias H, hbs@github)
18+
1319
1.0.0 (04-Jun-2014)
1420

1521
The first official non-beta release. No changes since 0.9.1.

0 commit comments

Comments
 (0)