Skip to content

Commit 87850f6

Browse files
committed
Merge branch 'release/0.3.3' into develop
2 parents 38d3558 + ba9cd5e commit 87850f6

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ A: Probably a disk full, or permission error.
8282
Via [clojars](http://clojars.org) and
8383
[Leiningen](http://github.com/technomancy/leiningen).
8484

85-
:dependencies [clj-ssh "0.3.2"]
85+
:dependencies [clj-ssh "0.3.3"]
8686

8787
or your favourite maven repository aware tool.
8888

ReleaseNotes.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Release Notes
22

3-
Current release is 0.3.2
3+
Current release is 0.3.3
4+
5+
## 0.3.3
6+
7+
- Add a :agent-forwarding option
8+
A boolean value is passed with :agent-forwarding to clj-ssh.ssh/ssh.
9+
10+
- Add support for system ssh-agent
11+
Support the system ssh-agent (or pageant on windows when using putty) via
12+
jsch-agent-proxy. Introduces a new agent function, clj-ssh.ssh/ssh-agent.
413

514
## 0.3.2
615

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>clj-ssh</groupId>
55
<artifactId>clj-ssh</artifactId>
6-
<version>0.3.3-SNAPSHOT</version>
6+
<version>0.3.4-SNAPSHOT</version>
77
<name>clj-ssh</name>
88
<description>
99
clj-ssh is a clojure wrapper for he jsch library, and can be used as an
@@ -126,7 +126,12 @@
126126
<dependency>
127127
<groupId>jsch-agent-proxy</groupId>
128128
<artifactId>jsch-agent-proxy</artifactId>
129-
<version>0.0.4-SNAPSHOT</version>
129+
<version>0.0.4</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>jsch-agent-proxy</groupId>
133+
<artifactId>jsch-agent-proxy-jna</artifactId>
134+
<version>0.0.4</version>
130135
</dependency>
131136
<dependency>
132137
<groupId>log4j</groupId>

0 commit comments

Comments
 (0)