File tree Expand file tree Collapse file tree 5 files changed +54
-6
lines changed Expand file tree Collapse file tree 5 files changed +54
-6
lines changed Original file line number Diff line number Diff line change
1
+ Version 0.6.3 (2012-10-26)
2
+ --------------------------
3
+ - Upgraded to sshj 0.8.1 and slf4j 1.7.2
4
+ - Cross-published against Scala 2.9.2 and Scala 2.10.0-RC1
5
+ - Added support for `fingerprint = any` host config setting
6
+
7
+
1
8
Version 0.6.2 (2012-06-20)
2
9
--------------------------
3
10
- Added support for configuring groups of hosts with one host file or resource
Original file line number Diff line number Diff line change @@ -12,16 +12,18 @@ It builds on sshj_ to provide the following features:
12
12
Installation
13
13
------------
14
14
15
- The current release is *0.6.2 *, it's available from <http://repo.spray.cc> .
16
- If you use SBT _ you can pull in the *scala-ssh * artifacts with::
15
+ The latest release is ** 0.6.3 ** and is built against Scala 2.9.2 as well as Scala 2.10.0-RC1 .
16
+ It is available from <http://repo.spray.io>. If you use SBT _ you can pull in the *scala-ssh * artifacts with::
17
17
18
- resolvers += "spray repo" at "http://repo.spray.cc "
18
+ resolvers += "spray repo" at "http://repo.spray.io "
19
19
20
- libraryDependencies += "com.decodified" % "scala-ssh" % "0.6.2"
20
+ libraryDependencies += "com.decodified" %% "scala-ssh" % "0.6.3" cross CrossVersion.full
21
+
22
+ (the trailing "cross CrossVersion.full" modifier is only required for SBT _ 0.12.x)
21
23
22
24
sshj _ uses SLF4J _ for logging, so you might want to also add logback _ to your dependencies::
23
25
24
- libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.3 "
26
+ libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.7 "
25
27
26
28
Additionally, in many cases you will need the following two artifacts, which provide additional cypher and compression
27
29
support::
Original file line number Diff line number Diff line change 1
1
name := " scala-ssh"
2
2
3
- version := " 0.6.3-SNAPSHOT "
3
+ version := " 0.6.3"
4
4
5
5
organization := " com.decodified"
6
6
Original file line number Diff line number Diff line change
1
+ This is a minor improvements release.
2
+ Changes since 0.6.2:
3
+
4
+ - Upgraded to sshj 0.8.1 and slf4j 1.7.2
5
+ - Cross-published against Scala 2.9.2 and Scala 2.10.0-RC1
6
+ - Added support for ` fingerprint = any ` host config setting
Original file line number Diff line number Diff line change
1
+ {
2
+ "organization" : " com.decodified" ,
3
+ "name" : " scala-ssh" ,
4
+ "version" : " 0.6.3" ,
5
+ "description" : " A Scala library providing remote shell access via SSH" ,
6
+ "site" : " https://github.com/sirthias/scala-ssh" ,
7
+ "tags" : [ " ssh" ],
8
+ "docs" : " https://github.com/sirthias/scala-ssh/" ,
9
+ "resolvers" : [ " http://repo.spray.io" ],
10
+ "dependencies" : [ {
11
+ "organization" : " net.schmizz" ,
12
+ "name" : " sshj" ,
13
+ "version" : " 0.8.1"
14
+ }, {
15
+ "organization" : " org.slf4j" ,
16
+ "name" : " slf4j-api" ,
17
+ "version" : " 1.7.2"
18
+ }, {
19
+ "organization" : " org.bouncycastle" ,
20
+ "name" : " bcprov-jdk16" ,
21
+ "version" : " 1.46"
22
+ }, {
23
+ "organization" : " com.jcraft" ,
24
+ "name" : " jzlib" ,
25
+ "version" : " 1.1.1"
26
+ } ],
27
+ "scalas" : [ " 2.9.2" , " 2.10.0-RC1" ],
28
+ "licenses" : [ {
29
+ "name" : " Apache 2" ,
30
+ "url" : " http://www.apache.org/licenses/LICENSE-2.0.txt"
31
+ } ],
32
+ "sbt" : false
33
+ }
You can’t perform that action at this time.
0 commit comments