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 58ee19e commit 041334b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 1.6.0

Date: 2019-06-28

- Update bouncy castle to 1.62


## Version 1.5.0

Date: 2018-06-02
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-core - Cryptographic Api
Andrey Antukh, <niwi@niwi.nz>
1.5.0
1.6.0
:toc: left
:!numbered:
:source-highlighter: pygments
Expand Down Expand Up @@ -40,10 +40,10 @@ dependency vector on your *_project.clj_* file:

[source,clojure]
----
[buddy/buddy-core "1.5.0"]
[buddy/buddy-core "1.6.0"]
----

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


== Hash algorithms (digest)
Expand Down
3 changes: 2 additions & 1 deletion profiles.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{:dev
{:aliases {"test-all" ["with-profile" "dev,1.8:dev,1.7:dev" "test"]}
{:aliases {"test-all" ["with-profile" "dev,1.9:dev,1.8:dev,1.7:dev" "test"]}
:codeina {:sources ["src"]
:reader :clojure
:target "doc/dist/latest/api"
:src-uri "http://github.com/funcool/buddy-core/blob/master/"
:src-uri-prefix "#L"}
:plugins [[funcool/codeina "0.5.0"]
[lein-ancient "0.6.15"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}}
12 changes: 6 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
(defproject buddy/buddy-core "1.5.0"
(defproject buddy/buddy-core "1.6.0"
:description "Cryptographic Api for Clojure."
:url "https://github.com/funcool/buddy-core"
: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"]
[org.clojure/test.check "0.9.0" :scope "test"]
[commons-codec/commons-codec "1.11"]
[cheshire "5.8.0"]
[commons-codec/commons-codec "1.12"]
[cheshire "5.8.1"]
[net.i2p.crypto/eddsa "0.3.0"]
[org.bouncycastle/bcprov-jdk15on "1.60"]
[org.bouncycastle/bcpkix-jdk15on "1.60"]]
[org.bouncycastle/bcprov-jdk15on "1.62"]
[org.bouncycastle/bcpkix-jdk15on "1.62"]]
:source-paths ["src"]
:java-source-paths ["src"]
:test-paths ["test"]
Expand Down

0 comments on commit 041334b

Please sign in to comment.