Skip to content

Commit

Permalink
Upgrade tink to 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
perkss committed Sep 21, 2024
1 parent fa3ffef commit 5ab146d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ Tinklj a Clojure api for [Google Tink](https://github.com/google/tink) cryptogra

#### Leiningen/Boot
```
[tinklj "0.1.10-SNAPSHOT"]
[tinklj "0.1.15-SNAPSHOT"]
```
#### Clojure CLI/deps.edn
```
tinklj {:mvn/version "0.1.10-SNAPSHOT"}
tinklj {:mvn/version "0.1.15-SNAPSHOT"}
```
#### Gradle
```
compile 'tinklj:tinklj:0.1.10-SNAPSHOT'
compile 'tinklj:tinklj:0.1.15-SNAPSHOT'
```
#### Maven
``` xml
<dependency>
<groupId>tinklj</groupId>
<artifactId>tinklj</artifactId>
<version>0.1.10-SNAPSHOT</version>
<version>0.1.15-SNAPSHOT</version>
</dependency>
```

Expand Down
10 changes: 5 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(defproject tinklj "0.1.12-SNAPSHOT"
(defproject tinklj "0.1.15-SNAPSHOT"
:description "A Clojure API for Google Tink Crypto Library. Offering a range of cryptographic techniques that are simple and easy to use."
:dependencies [[org.clojure/clojure "1.10.1"]
[com.google.crypto.tink/tink "1.12.0"]
[com.google.crypto.tink/tink "1.15.0"]
;; https://mvnrepository.com/artifact/com.google.crypto.tink/tink-awskms
[com.google.crypto.tink/tink-awskms "1.9.1"]
[com.google.crypto.tink/tink-awskms "1.10.1"]
;; https://mvnrepository.com/artifact/com.google.crypto.tink/tink-gcpkms
[com.google.crypto.tink/tink-gcpkms "1.9.0"]
[com.google.http-client/google-http-client-jackson2 "1.43.3"]]
[com.google.crypto.tink/tink-gcpkms "1.10.0"]
[com.google.http-client/google-http-client-jackson2 "1.45.0"]]
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/" }
:repositories [["clojars" {:sign-releases false}]]
Expand Down

0 comments on commit 5ab146d

Please sign in to comment.