Skip to content

Commit 7834176

Browse files
authored
Merge pull request #24 from civitaspo/v0.0.8
V0.0.8
2 parents a6a6b5b + cbc7728 commit 7834176

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.0.8 (2016-09-26)
2+
==================
3+
- Fix: Use second as timetout setting instead of milli second
4+
- https://github.com/civitaspo/embulk-output-sftp/pull/22
5+
- Fix: Fix CI failure only with Java7
6+
- https://github.com/civitaspo/embulk-output-sftp/pull/21
7+
- Fix: Format code that were warned by `./gradlew checkstyle` command
8+
- https://github.com/civitaspo/embulk-output-sftp/pull/23
9+
110
0.0.7 (2016-03-22)
211
==================
312
- Fix: Plugin throws ClassNotFoundException with EmbulkEmbed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ configurations {
1515
provided
1616
}
1717

18-
version = "0.0.7"
18+
version = "0.0.8"
1919
sourceCompatibility = 1.7
2020
targetCompatibility = 1.7
2121

src/main/java/org/embulk/output/sftp/SftpFileOutput.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ interface Retriable<T>
260260
public T execute() throws Exception;
261261
}
262262

263-
private <T> T withConnectionRetry(final Retriable<T> op) throws Exception
263+
private <T> T withConnectionRetry(final Retriable<T> op)
264+
throws Exception
264265
{
265266
int count = 0;
266267
while (true) {

0 commit comments

Comments
 (0)