This commit is contained in:
Jeroen van Erp
2015-08-18 14:22:32 +02:00
parent 742553912c
commit 1c749da957
3 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
= sshj - SSHv2 library for Java = sshj - SSHv2 library for Java
Jeroen van Erp Jeroen van Erp
:sshj_groupid: com.hierynomus :sshj_groupid: com.hierynomus
:sshj_version: 0.11.0 :sshj_version: 0.13.0
:source-highlighter: pygments :source-highlighter: pygments
image::https://travis-ci.org/hierynomus/sshj.svg?branch=master[] image::https://travis-ci.org/hierynomus/sshj.svg?branch=master[]
@@ -92,7 +92,7 @@ Google Group: http://groups.google.com/group/sshj-users
Fork away! Fork away!
== Release history == Release history
SSHJ 0.13.0 (2015-??-??):: SSHJ 0.13.0 (2015-08-18)::
* Merged https://github.com/hierynomus/sshj/issues/199[#199]: Fix for IndexOutOfBoundsException in ReadAheadRemoteFileInputStream, fixes https://github.com/hierynomus/sshj/issues/183[#183] * Merged https://github.com/hierynomus/sshj/issues/199[#199]: Fix for IndexOutOfBoundsException in ReadAheadRemoteFileInputStream, fixes https://github.com/hierynomus/sshj/issues/183[#183]
* Merged https://github.com/hierynomus/sshj/issues/195[#195]: New authentication supported: `gssapi-with-mic` * Merged https://github.com/hierynomus/sshj/issues/195[#195]: New authentication supported: `gssapi-with-mic`
* Merged https://github.com/hierynomus/sshj/issues/201[#201]: New option to verify negotiated key exchange algorithms * Merged https://github.com/hierynomus/sshj/issues/201[#201]: New option to verify negotiated key exchange algorithms

View File

@@ -4,7 +4,7 @@ apply plugin: "signing"
apply plugin: "osgi" apply plugin: "osgi"
group = "com.hierynomus" group = "com.hierynomus"
version = "0.13.0-SNAPSHOT" version = "0.13.0"
repositories { repositories {
mavenCentral() mavenCentral()

View File

@@ -24,7 +24,7 @@
<groupId>com.hierynomus</groupId> <groupId>com.hierynomus</groupId>
<artifactId>sshj-examples</artifactId> <artifactId>sshj-examples</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.13.0-SNAPSHOT</version> <version>0.13.0</version>
<name>sshj-examples</name> <name>sshj-examples</name>
<description>Examples for SSHv2 library for Java</description> <description>Examples for SSHv2 library for Java</description>
@@ -55,7 +55,7 @@
<dependency> <dependency>
<groupId>com.hierynomus</groupId> <groupId>com.hierynomus</groupId>
<artifactId>sshj</artifactId> <artifactId>sshj</artifactId>
<version>0.12.0</version> <version>0.13.0</version>
</dependency> </dependency>
</dependencies> </dependencies>