From 7656b4b17036f9ebda9509a95a54b0979ce28f16 Mon Sep 17 00:00:00 2001 From: Jeremy Norris Date: Tue, 7 Dec 2021 05:46:00 -0600 Subject: [PATCH 1/2] #98 restore JSch.VERSION. --- ChangeLog.md | 2 ++ src/main/java/com/jcraft/jsch/JSch.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 1b2f0ce5..faf3c50e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,5 @@ +* [0.1.71](https://github.com/mwiede/jsch/releases/tag/jsch-0.1.71) + * Address [#98](https://github.com/mwiede/jsch/issues/98) by restoring JSch.VERSION * [0.1.70](https://github.com/mwiede/jsch/releases/tag/jsch-0.1.70) * Address [#89](https://github.com/mwiede/jsch/issues/89) by fixing rare ECDSA signature validation issue * Address [#93](https://github.com/mwiede/jsch/issues/93) by always setting the "want reply" flag for "env" type channel requests to false diff --git a/src/main/java/com/jcraft/jsch/JSch.java b/src/main/java/com/jcraft/jsch/JSch.java index d1684eff..10f10180 100644 --- a/src/main/java/com/jcraft/jsch/JSch.java +++ b/src/main/java/com/jcraft/jsch/JSch.java @@ -35,6 +35,10 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING import java.util.Vector; public class JSch{ + /** + * The version number. + */ + public static final String VERSION = Version.getVersion(); static Hashtable config=new Hashtable<>(); static{ From c25039ca59436ac145853995b2d7a8245b604b69 Mon Sep 17 00:00:00 2001 From: Jeremy Norris Date: Tue, 7 Dec 2021 05:53:15 -0600 Subject: [PATCH 2/2] Update dependencies to latest versions. --- .mvn/wrapper/maven-wrapper.properties | 2 +- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index a9f1ef87..598fb341 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1,2 +1,2 @@ -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.3/apache-maven-3.8.3-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/pom.xml b/pom.xml index acd0bc0c..1d2fec5d 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ org.bouncycastle bcprov-jdk15on - 1.69 + 1.70 true @@ -89,7 +89,7 @@ org.junit.jupiter junit-jupiter - 5.8.1 + 5.8.2 test @@ -113,7 +113,7 @@ ch.qos.logback logback-classic - 1.2.6 + 1.2.7 test