From cf7bd5863e51abaf0238296c95b8adec0b34f3af Mon Sep 17 00:00:00 2001 From: Mathias Date: Fri, 26 Oct 2012 10:11:05 +0200 Subject: [PATCH] Prepare for 0.6.3 release --- CHANGELOG | 7 +++++++ README.rst | 12 +++++++----- build.sbt | 2 +- notes/0.6.3.markdown | 6 ++++++ src/main/ls/0.6.3.json | 33 +++++++++++++++++++++++++++++++++ 5 files changed, 54 insertions(+), 6 deletions(-) create mode 100644 notes/0.6.3.markdown create mode 100644 src/main/ls/0.6.3.json diff --git a/CHANGELOG b/CHANGELOG index 8890cf7..d5ce4c5 100644 --- a/CHANGELOG +++ b/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 diff --git a/README.rst b/README.rst index 29a693d..a87533f 100644 --- a/README.rst +++ b/README.rst @@ -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 . -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 . 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:: diff --git a/build.sbt b/build.sbt index c756d89..36e5f28 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "scala-ssh" -version := "0.6.3-SNAPSHOT" +version := "0.6.3" organization := "com.decodified" diff --git a/notes/0.6.3.markdown b/notes/0.6.3.markdown new file mode 100644 index 0000000..fb9e4f5 --- /dev/null +++ b/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 diff --git a/src/main/ls/0.6.3.json b/src/main/ls/0.6.3.json new file mode 100644 index 0000000..39ffc7e --- /dev/null +++ b/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 +} \ No newline at end of file