Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.14 #453

Merged
merged 4 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* [0.2.14](https://github.com/mwiede/jsch/releases/tag/jsch-0.2.14)
* [#450](https://github.com/mwiede/jsch/issues/450) use Socket.connect() with a timeout that has been supported since Java 1.4 instead of using old method of creating a separate thread and joining to that thread with timeout.
* [0.2.13](https://github.com/mwiede/jsch/releases/tag/jsch-0.2.13)
* #411 Add flush operation from Fix added is/jsch#39, with new config option to allow disabling in case it causes regressions.
* #403 add a warning when Channel.getInputStream() or Channel.getExtInputStream() is called after Channel.connect().
Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ with
<dependency>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<version>0.2.13</version>
<version>0.2.14</version>
</dependency>
```

Expand All @@ -43,7 +43,7 @@ When you have an artifact `foo:bar`, which contains `com.jcraft:jsch` as a trans
<dependency>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<version>0.2.13</version>
<version>0.2.14</version>
</dependency>
<dependency>
<groupId>foo</groupId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<packaging>jar</packaging>
<version>0.2.14-SNAPSHOT</version>
<version>0.2.15-SNAPSHOT</version>
<name>JSch</name>
<url>https://github.com/mwiede/jsch</url>
<description>JSch is a pure Java implementation of SSH2</description>
Expand Down Expand Up @@ -73,7 +73,7 @@
</license>
</licenses>
<properties>
<project.build.outputTimestamp>2023-11-13T21:42:59Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-12-14T11:54:05Z</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<skipITs>true</skipITs>
Expand Down