From 58e54f402a74f12c6106d2f2425bf6dd0b7a90cd Mon Sep 17 00:00:00 2001 From: release-bot Date: Wed, 7 Dec 2022 10:23:59 +0000 Subject: [PATCH 1/4] [maven-release-plugin] prepare release jsch-0.2.5 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 10e21560..0eb56abb 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ com.github.mwiede jsch jar - 0.2.5-SNAPSHOT + 0.2.5 JSch https://github.com/mwiede/jsch JSch is a pure Java implementation of SSH2 @@ -11,7 +11,7 @@ scm:git:https://github.com/mwiede/jsch.git scm:git:https://github.com/mwiede/jsch.git https://github.com/mwiede/jsch - HEAD + jsch-0.2.5 From e1b233b0b48b744e4e283267e3b23b3a0fe9e986 Mon Sep 17 00:00:00 2001 From: release-bot Date: Wed, 7 Dec 2022 10:24:01 +0000 Subject: [PATCH 2/4] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0eb56abb..f8fb3f8e 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ com.github.mwiede jsch jar - 0.2.5 + 0.2.6-SNAPSHOT JSch https://github.com/mwiede/jsch JSch is a pure Java implementation of SSH2 @@ -11,7 +11,7 @@ scm:git:https://github.com/mwiede/jsch.git scm:git:https://github.com/mwiede/jsch.git https://github.com/mwiede/jsch - jsch-0.2.5 + HEAD From 11a87f5a6636d3465c50cd4a95527b06422e1579 Mon Sep 17 00:00:00 2001 From: Matthias Wiedemann Date: Wed, 7 Dec 2022 11:36:44 +0100 Subject: [PATCH 3/4] Update Readme.md --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 40443920..cee1af07 100644 --- a/Readme.md +++ b/Readme.md @@ -37,7 +37,7 @@ with com.github.mwiede jsch - 0.2.4 + 0.2.5 ``` @@ -47,7 +47,7 @@ When you have an artifact `foo:bar`, which contains `com.jcraft:jsch` as a trans com.github.mwiede jsch - 0.2.4 + 0.2.5 foo From e08cefa1c253332da15194fe678f7b6412e01112 Mon Sep 17 00:00:00 2001 From: Matthias Wiedemann Date: Wed, 7 Dec 2022 11:39:06 +0100 Subject: [PATCH 4/4] Update ChangeLog.md --- ChangeLog.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 7c6dcf20..7363ed83 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,7 @@ * [0.2.5](https://github.com/mwiede/jsch/releases/tag/jsch-0.2.5) - * Explictly free resources in `Compression` implementations. + * Explictly free resources in `Compression` implementations in https://github.com/mwiede/jsch/pull/241 + * Fix integration test failures on Apple Silicon by skipping OpenSSH 7.4 tests by @norrisjeremy in https://github.com/mwiede/jsch/pull/227 + * generate osgi bundle manifest data for jar #248 by @mwiede in https://github.com/mwiede/jsch/pull/249 * [0.2.4](https://github.com/mwiede/jsch/releases/tag/jsch-0.2.4) * When connections fail due to an algorithm negotiation failure, throw a `JSchAlgoNegoFailException` that extends `JSchException`. * The new `JSchAlgoNegoFailException` details which specific algorithm negotiation failed, along with what both JSch and the server proposed.