Skip to content

Commit 758e6e1

Browse files
committed
Update pom, readme and release notes for release
1 parent 05494a0 commit 758e6e1

File tree

3 files changed

+40
-11
lines changed

3 files changed

+40
-11
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,13 @@ A: Probably a disk full, or permission error.
6868

6969
## Installation
7070

71-
Via maven and the [clojars](http://clojars.org), or
71+
Via [clojars](http://clojars.org) and
7272
[Leiningen](http://github.com/technomancy/leiningen).
7373

74+
:dependencies [clj-ssh "0.3.0"]
75+
76+
or your favourite maven repository aware tool.
77+
7478
## License
7579

7680
Licensed under [EPL](http://www.eclipse.org/legal/epl-v10.html)

ReleaseNotes.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Release Notes
2+
3+
Current release is 0.3.0
4+
5+
## 0.3.0
6+
7+
* Changes
8+
9+
- Remove use of monolithic contrib
10+
In preparation for clojure 1.3. Use slingshot instead of
11+
contrib.condition. Use local copy of contrib.reflect.
12+
13+
- Switch to tools.logging
14+
15+
- Allow specification of PipedInputStream buffer size
16+
The buffer size (in bytes) for the piped stream used to implement the
17+
:stream option for :out. If the ssh commands generate a high volume of
18+
output, then this buffer size can become a bottleneck. The buffer size
19+
can be specified by binding *piped-stream-buffer-size*, and defaults to
20+
10Kb.
21+
22+
- Add scp-from and scp-to, for copy files over ssh-exec
23+
Add support for scp using ssh-exec. copies files from a remote machine.
24+
copies to a remote machine.
25+
26+
- Drop clojure 1.1.0 support

pom.xml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>clj-ssh</groupId>
55
<artifactId>clj-ssh</artifactId>
6-
<version>0.3.0-SNAPSHOT</version>
6+
<version>0.3.0</version>
77
<name>clj-ssh</name>
8-
<description>ssh from clojure</description>
8+
<description>
9+
clj-ssh is a clojure wrapper for he jsch library, and can be used as an
10+
ssh client
11+
</description>
12+
913
<scm>
1014
<connection>scm:git:git://github.com/hugoduncan/clj-ssh.git</connection>
1115
<developerConnection>scm:git:ssh://[email protected]/hugoduncan/clj-ssh.git</developerConnection>
1216
<tag>380240ba9bf67fffe69bebdc9aaef711e819063d</tag>
1317
<url>http://github.com/hugoduncan/clj-ssh</url>
1418
</scm>
19+
1520
<build>
1621
<sourceDirectory>src</sourceDirectory>
1722
<testSourceDirectory>test</testSourceDirectory>
@@ -72,20 +77,14 @@
7277
</plugin>
7378
</plugins>
7479
</build>
80+
7581
<repositories>
76-
<repository>
77-
<id>clojure</id>
78-
<url>http://build.clojure.org/releases</url>
79-
</repository>
80-
<repository>
81-
<id>clojure-snapshots</id>
82-
<url>http://build.clojure.org/snapshots</url>
83-
</repository>
8482
<repository>
8583
<id>clojars</id>
8684
<url>http://clojars.org/repo/</url>
8785
</repository>
8886
</repositories>
87+
8988
<dependencies>
9089
<dependency>
9190
<groupId>org.clojure</groupId>

0 commit comments

Comments
 (0)