Skip to content

Commit fc30e4c

Browse files
committed
Merge tag '0.5.0' into develop
clj-shh-0.5.0
2 parents 49fb6a5 + 86872c0 commit fc30e4c

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

README.md

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

136-
:dependencies [clj-ssh "0.4.4"]
136+
:dependencies [clj-ssh "0.5.0"]
137137

138138
or your favourite maven repository aware tool.
139139

ReleaseNotes.md

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

3-
Current release is 0.4.4
3+
Current release is 0.5.0
4+
5+
## 0.5.0
6+
7+
- Require clojure 1.4.0
8+
Drops usage of slingshot.
49

510
## 0.4.4
611

profiles.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:clojure-1.2.1 {:dependencies [[org.clojure/clojure "1.2.1"]]}
33
:clojure-1.3.0 {:dependencies [[org.clojure/clojure "1.3.0"]]}
44
:clojure-1.4.0 {:dependencies [[org.clojure/clojure "1.4.0"]]}
5-
:clojure-1.5.0 {:dependencies [[org.clojure/clojure "1.5.0-RC3"]]}
5+
:clojure-1.5.0 {:dependencies [[org.clojure/clojure "1.5.0-RC4"]]}
66
:codox {:codox {:writer codox-md.writer/write-docs
77
:version "0.4"
88
:output-dir "doc/api/0.4"

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-ssh "0.5.0-SNAPSHOT"
1+
(defproject clj-ssh "0.5.0"
22
:description "Library for using SSH from clojure."
33
:url "https://github.com/hugoduncan/clj-ssh"
44
:license {:name "Eclipse Public License"

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ echo -n "commiting release notes and readme. enter to continue:" && read x \
3838
&& git add ReleaseNotes.md README.md project.clj \
3939
&& git commit -m "Updated version, release notes and readme for $version" \
4040
&& echo -n "Peform release. enter to continue:" && read x \
41-
&& lein with-profile default:clojure-1.4.0:clojure-1.5.0 test \
41+
&& lein with-profile default:+clojure-1.5.0 test \
4242
&& lein deploy clojars \
4343
&& git flow release finish $version \
4444
&& lein with-profile release set-version ${next_version} \

0 commit comments

Comments
 (0)