Skip to content

Commit

Permalink
Prepare release 0.38.0-idea2
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirlagunov committed Apr 10, 2024
1 parent 7a3f2f1 commit 08b9436
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down Expand Up @@ -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

Expand Down
18 changes: 17 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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
}
}
Expand Down

0 comments on commit 08b9436

Please sign in to comment.