Skip to content

Commit

Permalink
Prepare for 0.6.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Oct 26, 2012
1 parent a346feb commit cf7bd58
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
@@ -1,3 +1,10 @@
Version 0.6.3 (2012-10-26)
--------------------------
- Upgraded to sshj 0.8.1 and slf4j 1.7.2
- Cross-published against Scala 2.9.2 and Scala 2.10.0-RC1
- Added support for `fingerprint = any` host config setting


Version 0.6.2 (2012-06-20)
--------------------------
- Added support for configuring groups of hosts with one host file or resource
Expand Down
12 changes: 7 additions & 5 deletions README.rst
Expand Up @@ -12,16 +12,18 @@ It builds on sshj_ to provide the following features:
Installation
------------

The current release is *0.6.2*, it's available from <http://repo.spray.cc>.
If you use SBT_ you can pull in the *scala-ssh* artifacts with::
The latest release is **0.6.3** and is built against Scala 2.9.2 as well as Scala 2.10.0-RC1.
It is available from <http://repo.spray.io>. If you use SBT_ you can pull in the *scala-ssh* artifacts with::

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

libraryDependencies += "com.decodified" % "scala-ssh" % "0.6.2"
libraryDependencies += "com.decodified" %% "scala-ssh" % "0.6.3" cross CrossVersion.full

(the trailing "cross CrossVersion.full" modifier is only required for SBT_ 0.12.x)

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

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

Additionally, in many cases you will need the following two artifacts, which provide additional cypher and compression
support::
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,6 +1,6 @@
name := "scala-ssh"

version := "0.6.3-SNAPSHOT"
version := "0.6.3"

organization := "com.decodified"

Expand Down
6 changes: 6 additions & 0 deletions notes/0.6.3.markdown
@@ -0,0 +1,6 @@
This is a minor improvements release.
Changes since 0.6.2:

- Upgraded to sshj 0.8.1 and slf4j 1.7.2
- Cross-published against Scala 2.9.2 and Scala 2.10.0-RC1
- Added support for `fingerprint = any` host config setting
33 changes: 33 additions & 0 deletions src/main/ls/0.6.3.json
@@ -0,0 +1,33 @@
{
"organization" : "com.decodified",
"name" : "scala-ssh",
"version" : "0.6.3",
"description" : "A Scala library providing remote shell access via SSH",
"site" : "https://github.com/sirthias/scala-ssh",
"tags" : [ "ssh" ],
"docs" : "https://github.com/sirthias/scala-ssh/",
"resolvers" : [ "http://repo.spray.io" ],
"dependencies" : [ {
"organization" : "net.schmizz",
"name" : "sshj",
"version" : "0.8.1"
}, {
"organization" : "org.slf4j",
"name" : "slf4j-api",
"version" : "1.7.2"
}, {
"organization" : "org.bouncycastle",
"name" : "bcprov-jdk16",
"version" : "1.46"
}, {
"organization" : "com.jcraft",
"name" : "jzlib",
"version" : "1.1.1"
} ],
"scalas" : [ "2.9.2", "2.10.0-RC1" ],
"licenses" : [ {
"name" : "Apache 2",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.txt"
} ],
"sbt" : false
}

0 comments on commit cf7bd58

Please sign in to comment.