Skip to content

Commit cde4fb1

Browse files
committed
Updated project.clj, release notes and readme for 0.5.8
1 parent 373af45 commit cde4fb1

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Thanks to [Ryan Stradling](http://github.com/rstradling) for these.
163163
Via [clojars](http://clojars.org) and
164164
[Leiningen](http://github.com/technomancy/leiningen).
165165

166-
:dependencies [clj-ssh "0.5.7"]
166+
:dependencies [clj-ssh "0.5.8"]
167167

168168
or your favourite maven repository aware tool.
169169

ReleaseNotes.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
1-
# Release Notes
1+
## 0.5.8
2+
3+
- Enable introspection of sessions
4+
Adds the session? predicate for testing for a Session object, an the
5+
session-hostname and session-port functions for querying a session.
6+
7+
- Enable copying identities between agents
8+
The copy-identities can be used to copy identities from one agent to
9+
another. This is useful to allow copying identities from a system agent
10+
to a non system agent.
11+
12+
- Add support for jump hosts
13+
The jump-session function is used to obtain a session that can be
14+
connected across jump hosts.
15+
16+
The `the-session` function is added to obtain a jsch session from a
17+
connected jump-session, or a connected jsch Session, and can be used in
18+
code that wants to support jump sessions.
19+
20+
- Add fingerprint function on keypairs
21+
22+
- Allow keypair construction from just a public key
23+
24+
- Update tools.logging to 0.2.6
25+
26+
- Update to jsch 0.1.51
27+
Adds support for private keys in PKCS#8 format.
28+
29+
Fixes several session crash issues.
30+
31+
- Update to jsch.agentproxy 0.0.7
232

333
## 0.5.7
434

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(def agentproxy-version "0.0.7")
22

3-
(defproject clj-ssh "0.5.8-SNAPSHOT"
3+
(defproject clj-ssh "0.5.8"
44
:description "Library for using SSH from clojure."
55
:url "https://github.com/hugoduncan/clj-ssh"
66
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)