Skip to content

Commit

Permalink
Bump to version 0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Rowe committed Oct 29, 2013
1 parent fc85eb5 commit 4a0ff48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project.clj
@@ -1,7 +1,7 @@
(defproject clj-hmac "0.1.0-SNAPSHOT"
(defproject clj-hmac "0.1.0"
:description "A library for cryptographically signing arbitrary Clojure data."
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]]
:dependencies [[org.clojure/clojure "1.5.1"]]
:profiles {:dev {:dependencies [[clj-json "0.5.0"]
[org.clojure/data.codec "0.1.0"]]}})
3 changes: 3 additions & 0 deletions src/clj_hmac/msg.clj
Expand Up @@ -5,6 +5,9 @@
"Return a string representation of this object suitable to be HMAC'd."))

(extend-protocol IGenerateHmacMessage
nil
(msg-string [this] (msg-string ""))

java.lang.String
(msg-string [this] this)

Expand Down

0 comments on commit 4a0ff48

Please sign in to comment.