diff --git a/README.adoc b/README.adoc index d0472b78..5b3ad82f 100644 --- a/README.adoc +++ b/README.adoc @@ -1,7 +1,7 @@ = sshj - SSHv2 library for Java Jeroen van Erp :sshj_groupid: com.hierynomus -:sshj_version: 0.38.0-idea1 +:sshj_version: 0.38.0-idea2 :source-highlighter: pygments image:https://github.com/hierynomus/sshj/actions/workflows/gradle.yml/badge.svg[link="https://github.com/hierynomus/sshj/actions/workflows/gradle.yml"] @@ -110,6 +110,9 @@ Issue tracker: https://github.com/hierynomus/sshj/issues Fork away! == Release history +SSHJ 0.38.0-idea2 (2024-03-10):: +* Changes from https://github.com/hierynomus/sshj/pull/936[#936] + SSHJ 0.38.0-idea1 (2024-03-05):: * Backport of https://github.com/hierynomus/sshj/pull/922[#922]: known_hosts parsing does not ignore malformed base64 strings since 0.36 diff --git a/build.gradle b/build.gradle index 3650f632..913f055f 100644 --- a/build.gradle +++ b/build.gradle @@ -74,6 +74,22 @@ if (!JavaVersion.current().isJava9Compatible()) { throw new GradleScriptException("Minimum compilation version is Java 9") } +/* + * Copyright (C)2009 - SSHJ Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + // This disables the pedantic doclint feature of JDK8 if (JavaVersion.current().isJava8Compatible()) { tasks.withType(Javadoc) { @@ -219,7 +235,7 @@ publishing { maven(MavenPublication) { groupId = "org.jetbrains.intellij.deps" artifactId = "sshj" - version = "0.38.0-idea1" + version = "0.38.0-idea2" from components.java } }