Skip to content

Commit

Permalink
Update deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Jun 28, 2019
1 parent 9829fe5 commit 8bbe91a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
= Changelog

## Version 3.1.0

Date: 2019-06-28

- Update buddy-core to 1.6.0


## Version 3.0.0

- Update buddy-core to 1.5.0
- Proper handling of SignatureException (jws).
- Add EdDSA signer.
- Add KeyProvider abstraction for enably dynamic selection
of key on JWS.


## Version 2.2.0

Expand Down
6 changes: 3 additions & 3 deletions doc/content.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= buddy-sign - High level message signing.
Andrey Antukh, <niwi@niwi.be>
3.0.0
3.1.0
:toc: left
:!numbered:
:source-highlighter: pygments
Expand Down Expand Up @@ -45,10 +45,10 @@ dependency vector on your *_project.clj_* file:

[source,clojure]
----
[buddy/buddy-sign "3.0.0"]
[buddy/buddy-sign "3.1.0"]
----

And is tested under JDK7 and JDK8.
And is tested under JDK8.


[[jwt]]
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(defproject buddy/buddy-sign "3.0.0"
(defproject buddy/buddy-sign "3.1.0"
:description "High level message signing for Clojure"
:url "https://github.com/funcool/buddy-sign"
:license {:name "Apache 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
:dependencies [[org.clojure/clojure "1.10.1" :scope "provided"]
[com.taoensso/nippy "2.14.0" :scope "provided"]
[org.clojure/test.check "0.9.0" :scope "test"]
[buddy/buddy-core "1.5.0"]]
[buddy/buddy-core "1.6.0"]]
:source-paths ["src"]
:javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]
:test-paths ["test"])
Expand Down

0 comments on commit 8bbe91a

Please sign in to comment.