File tree Expand file tree Collapse file tree 4 files changed +23
-8
lines changed
src/test/scala/com/decodified/scalassh Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change
1
+ Version 0.7.0 (2014-10-15)
2
+ --------------------------
3
+ - Upgraded to sshj 0.10.0 and slf4j 1.7.7
4
+ - Cross-published against Scala 2.10.4 and Scala 2.11.2
5
+ - Dropped support for Scala 2.9
6
+ - Fixed possible RuntimeException in HostConfig (thx to HairyFotr)
7
+ - Fixed potential logging of user password (thx to Joseph Price)
8
+ - Added SFTP and SCP capabilities (thx to Philip Cali)
9
+ - Added PTY configuration for SSH sessions (thx to Dan Osipov)
10
+
11
+
12
+ Version 0.6.4 (2013-07-23)
13
+ --------------------------
14
+ - Upgraded to sshj 0.9.0 and slf4j 1.7.5
15
+ - Cross-published against Scala 2.9.3 and Scala 2.10.2
16
+
17
+
1
18
Version 0.6.3 (2012-10-26)
2
19
--------------------------
3
20
- Upgraded to sshj 0.8.1 and slf4j 1.7.2
Original file line number Diff line number Diff line change @@ -15,14 +15,10 @@ It builds on SSHJ_ to provide the following features:
15
15
Installation
16
16
------------
17
17
18
- The latest release is **0.6.4 ** and is built against Scala 2.9.3, Scala 2.10 and Scala 2.11.
19
- It is available from http://repo.spray.io . If you use SBT _ you can pull in the *scala-ssh * artifacts with::
18
+ The latest release is **0.7.0 ** and is built against Scala 2.10 and Scala 2.11.
19
+ It is available from Maven Central . If you use SBT _ you can pull in the *scala-ssh * artifacts with::
20
20
21
- resolvers += "spray repo" at "http://repo.spray.io"
22
-
23
- libraryDependencies += "com.decodified" %% "scala-ssh" % "0.6.4" cross CrossVersion.full
24
-
25
- (the trailing "cross CrossVersion.full" modifier is only required for SBT _ 0.12.x)
21
+ libraryDependencies += "com.decodified" %% "scala-ssh" % "0.7.0"
26
22
27
23
SSHJ _ uses SLF4J _ for logging, so you might want to also add logback _ to your dependencies::
28
24
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import scalariform.formatter.preferences._
2
2
3
3
name := " scala-ssh"
4
4
5
- version := " 0.6.4 "
5
+ version := " 0.7.0 "
6
6
7
7
organization := " com.decodified"
8
8
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ import Source.{ fromFile ⇒ open }
24
24
import org .specs2 .execute .{ Failure , FailureException }
25
25
26
26
class SshClientSpec extends Specification {
27
+ sequential
28
+
27
29
def is =
28
30
" The SshClient should be able to" ^
29
31
" properly connect to the test host and fetch a directory listing" ! simpleTest ^
You can’t perform that action at this time.
0 commit comments