Skip to content

Commit cf7bd58

Browse files
committed
Prepare for 0.6.3 release
1 parent a346feb commit cf7bd58

File tree

5 files changed

+54
-6
lines changed

5 files changed

+54
-6
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
Version 0.6.2 (2012-06-20)
29
--------------------------
310
- Added support for configuring groups of hosts with one host file or resource

README.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@ It builds on sshj_ to provide the following features:
1212
Installation
1313
------------
1414

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

18-
resolvers += "spray repo" at "http://repo.spray.cc"
18+
resolvers += "spray repo" at "http://repo.spray.io"
1919

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)
2123

2224
sshj_ uses SLF4J_ for logging, so you might want to also add logback_ to your dependencies::
2325

24-
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.3"
26+
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.7"
2527

2628
Additionally, in many cases you will need the following two artifacts, which provide additional cypher and compression
2729
support::

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "scala-ssh"
22

3-
version := "0.6.3-SNAPSHOT"
3+
version := "0.6.3"
44

55
organization := "com.decodified"
66

notes/0.6.3.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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

src/main/ls/0.6.3.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
}

0 commit comments

Comments
 (0)