File tree Expand file tree Collapse file tree 10 files changed +18
-18
lines changed Expand file tree Collapse file tree 10 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ repositories {
40
40
mavenCentral()
41
41
}
42
42
dependencies {
43
- implementation(" dev.whyoleg.cryptography:cryptography-core:0.1 .0" )
43
+ implementation(" dev.whyoleg.cryptography:cryptography-core:0.2 .0" )
44
44
// some provider
45
- implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.1 .0" )
45
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.2 .0" )
46
46
}
47
47
```
48
48
@@ -55,9 +55,9 @@ repositories {
55
55
maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" )
56
56
}
57
57
dependencies {
58
- implementation(" dev.whyoleg.cryptography:cryptography-core:0.2 .0-SNAPSHOT" )
58
+ implementation(" dev.whyoleg.cryptography:cryptography-core:0.3 .0-SNAPSHOT" )
59
59
// some provider
60
- implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.2 .0-SNAPSHOT" )
60
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.3 .0-SNAPSHOT" )
61
61
}
62
62
```
63
63
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ CryptographyProvider.Default
24
24
25
25
``` kotlin
26
26
dependencies {
27
- implementation(" dev.whyoleg.cryptography:cryptography-core:0.1 .0" )
27
+ implementation(" dev.whyoleg.cryptography:cryptography-core:0.2 .0" )
28
28
}
29
29
```
30
30
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ provider.get(SHA512)
21
21
22
22
``` kotlin
23
23
dependencies {
24
- implementation(" dev.whyoleg.cryptography:cryptography-provider-apple:0.1 .0" )
24
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-apple:0.2 .0" )
25
25
}
26
26
```
27
27
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ provider.get(SHA512)
49
49
50
50
``` kotlin
51
51
dependencies {
52
- implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.1 .0" )
52
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.2 .0" )
53
53
}
54
54
```
55
55
Original file line number Diff line number Diff line change @@ -34,11 +34,11 @@ provider.get(SHA512)
34
34
35
35
``` kotlin
36
36
dependencies {
37
- implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-api:0.1 .0" )
37
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-api:0.2 .0" )
38
38
// or
39
- implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-shared:0.1 .0" )
39
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-shared:0.2 .0" )
40
40
// or
41
- implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.1 .0" )
41
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.2 .0" )
42
42
}
43
43
```
44
44
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ provider.get(SHA512)
26
26
27
27
``` kotlin
28
28
dependencies {
29
- implementation(" dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.1 .0" )
29
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.2 .0" )
30
30
}
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ val bytes: ByteArray = CryptographyRandom.nextBytes(20)
22
22
23
23
``` kotlin
24
24
dependencies {
25
- implementation(" dev.whyoleg.cryptography:cryptography-random:0.1 .0" )
25
+ implementation(" dev.whyoleg.cryptography:cryptography-random:0.2 .0" )
26
26
}
27
27
```
28
28
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ of all modules because of direct dependency on the BOM module
10
10
11
11
``` kotlin
12
12
dependencies {
13
- implementation(platform(" dev.whyoleg.cryptography:cryptography-bom:0.1 .0" ))
13
+ implementation(platform(" dev.whyoleg.cryptography:cryptography-bom:0.2 .0" ))
14
14
15
15
// now you can declare other dependencies without a version
16
16
implementation(" dev.whyoleg.cryptography:cryptography-core" )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Configure `settings.gradle.kts`:
11
11
dependencyResolutionManagement {
12
12
versionCatalogs {
13
13
create(" cryptographyLibs" ) {
14
- from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.1 .0" )
14
+ from(" dev.whyoleg.cryptography:cryptography-version-catalog:0.2 .0" )
15
15
}
16
16
}
17
17
}
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ repositories {
25
25
mavenCentral()
26
26
}
27
27
dependencies {
28
- implementation(" dev.whyoleg.cryptography:cryptography-core:0.1 .0" )
28
+ implementation(" dev.whyoleg.cryptography:cryptography-core:0.2 .0" )
29
29
// some provider
30
- implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.1 .0" )
30
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.2 .0" )
31
31
}
32
32
```
33
33
@@ -40,9 +40,9 @@ repositories {
40
40
maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" )
41
41
}
42
42
dependencies {
43
- implementation(" dev.whyoleg.cryptography:cryptography-core:0.2 .0-SNAPSHOT" )
43
+ implementation(" dev.whyoleg.cryptography:cryptography-core:0.3 .0-SNAPSHOT" )
44
44
// some provider
45
- implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.2 .0-SNAPSHOT" )
45
+ implementation(" dev.whyoleg.cryptography:cryptography-provider-jdk:0.3 .0-SNAPSHOT" )
46
46
}
47
47
```
48
48
You can’t perform that action at this time.
0 commit comments