Skip to content

Commit 731fc66

Browse files
committed
= prepare for 0.7.0 release
1 parent a1aa420 commit 731fc66

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

CHANGELOG

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
Version 0.6.3 (2012-10-26)
219
--------------------------
320
- Upgraded to sshj 0.8.1 and slf4j 1.7.2

README.rst

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,10 @@ It builds on SSHJ_ to provide the following features:
1515
Installation
1616
------------
1717

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::
2020

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"
2622

2723
SSHJ_ uses SLF4J_ for logging, so you might want to also add logback_ to your dependencies::
2824

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import scalariform.formatter.preferences._
22

33
name := "scala-ssh"
44

5-
version := "0.6.4"
5+
version := "0.7.0"
66

77
organization := "com.decodified"
88

src/test/scala/com/decodified/scalassh/SshClientSpec.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ import Source.{ fromFile ⇒ open }
2424
import org.specs2.execute.{ Failure, FailureException }
2525

2626
class SshClientSpec extends Specification {
27+
sequential
28+
2729
def is =
2830
"The SshClient should be able to" ^
2931
"properly connect to the test host and fetch a directory listing" ! simpleTest ^

0 commit comments

Comments
 (0)