Skip to content

Commit 69b77a8

Browse files
committed
Version 0.4.0
1 parent c4edeff commit 69b77a8

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
cache-disabled: true
1717

1818
- name: Publish snapshot to Maven Central
19-
run: ./gradlew publishToMavenCentral -Pversion=0.4.0-SNAPSHOT --no-configuration-cache
19+
run: ./gradlew publishToMavenCentral -Pversion=0.4.1-SNAPSHOT --no-configuration-cache
2020
env:
2121
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{secrets.signingKey}}
2222
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{secrets.signingPassword}}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ The library is published to Maven Central, so make sure, that it’s added to re
4242
kotlin {
4343
sourceSets {
4444
commonMain.dependencies {
45-
implementation("dev.whyoleg.cryptography:cryptography-core:0.3.1")
45+
implementation("dev.whyoleg.cryptography:cryptography-core:0.4.0")
4646
}
4747
// or androidMain
4848
jvmMain.dependencies {
49-
implementation("dev.whyoleg.cryptography:cryptography-provider-jdk:0.3.1")
49+
implementation("dev.whyoleg.cryptography:cryptography-provider-jdk:0.4.0")
5050
}
5151
appleMain.dependencies {
52-
implementation("dev.whyoleg.cryptography:cryptography-provider-apple:0.3.1")
52+
implementation("dev.whyoleg.cryptography:cryptography-provider-apple:0.4.0")
5353
// or openssl3 provider with better algorithms coverage and other native targets support
54-
// implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.3.1")
54+
// implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.4.0")
5555
}
5656
wasmJsMain.dependencies {
57-
implementation("dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.3.1")
57+
implementation("dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.4.0")
5858
}
5959
}
6060
}
@@ -69,7 +69,7 @@ repositories {
6969
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
7070
}
7171
dependencies {
72-
implementation("dev.whyoleg.cryptography:cryptography-core:0.4.0-SNAPSHOT")
72+
implementation("dev.whyoleg.cryptography:cryptography-core:0.4.1-SNAPSHOT")
7373
}
7474
```
7575

cryptography-bigint/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ println(bigInt > 0) // prints "true"
2828

2929
```kotlin
3030
dependencies {
31-
implementation("dev.whyoleg.cryptography:cryptography-bigint:0.3.1")
31+
implementation("dev.whyoleg.cryptography:cryptography-bigint:0.4.0")
3232
}
3333
```
3434

cryptography-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CryptographyProvider.Default
2424

2525
```kotlin
2626
dependencies {
27-
implementation("dev.whyoleg.cryptography:cryptography-core:0.3.1")
27+
implementation("dev.whyoleg.cryptography:cryptography-core:0.4.0")
2828
}
2929
```
3030

cryptography-providers/apple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ provider.get(SHA512)
2727

2828
```kotlin
2929
dependencies {
30-
implementation("dev.whyoleg.cryptography:cryptography-provider-apple:0.3.1")
30+
implementation("dev.whyoleg.cryptography:cryptography-provider-apple:0.4.0")
3131
}
3232
```
3333

cryptography-providers/jdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ provider.get(SHA512)
4747

4848
```kotlin
4949
dependencies {
50-
implementation("dev.whyoleg.cryptography:cryptography-provider-jdk:0.3.1")
50+
implementation("dev.whyoleg.cryptography:cryptography-provider-jdk:0.4.0")
5151
}
5252
```
5353

cryptography-providers/openssl3/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ provider.get(SHA512)
3434

3535
```kotlin
3636
dependencies {
37-
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-api:0.3.1")
37+
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-api:0.4.0")
3838
// or
39-
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-shared:0.3.1")
39+
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-shared:0.4.0")
4040
// or
41-
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.3.1")
41+
implementation("dev.whyoleg.cryptography:cryptography-provider-openssl3-prebuilt:0.4.0")
4242
}
4343
```
4444

cryptography-providers/webcrypto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ provider.get(SHA512)
2323

2424
```kotlin
2525
dependencies {
26-
implementation("dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.3.1")
26+
implementation("dev.whyoleg.cryptography:cryptography-provider-webcrypto:0.4.0")
2727
}
2828
```
2929

cryptography-random/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ val bytes: ByteArray = CryptographyRandom.nextBytes(20)
2424

2525
```kotlin
2626
dependencies {
27-
implementation("dev.whyoleg.cryptography:cryptography-random:0.3.1")
27+
implementation("dev.whyoleg.cryptography:cryptography-random:0.4.0")
2828
}
2929
```
3030

cryptography-serialization/asn1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ println(decoded.algorithm.value) // prints "1.2.840.113549.1.1.11"
3030

3131
```kotlin
3232
dependencies {
33-
implementation("dev.whyoleg.cryptography:cryptography-serialization-asn1:0.3.1")
33+
implementation("dev.whyoleg.cryptography:cryptography-serialization-asn1:0.4.0")
3434
}
3535
```
3636

cryptography-serialization/asn1/modules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ val spkiPublicKey: ByteArray = DER.encodeToByteArray(
1919

2020
```kotlin
2121
dependencies {
22-
implementation("dev.whyoleg.cryptography:cryptography-serialization-asn1-modules:0.3.1")
22+
implementation("dev.whyoleg.cryptography:cryptography-serialization-asn1-modules:0.4.0")
2323
}
2424
```
2525

cryptography-serialization/pem/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ println(decodedPemContent.bytes.decodeToString()) // prints "Hello World"
3232

3333
```kotlin
3434
dependencies {
35-
implementation("dev.whyoleg.cryptography:cryptography-serialization-pem:0.3.1")
35+
implementation("dev.whyoleg.cryptography:cryptography-serialization-pem:0.4.0")
3636
}
3737
```
3838

docs/bom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ of all modules because of direct dependency on the BOM module
1010

1111
```kotlin
1212
dependencies {
13-
implementation(platform("dev.whyoleg.cryptography:cryptography-bom:0.3.1"))
13+
implementation(platform("dev.whyoleg.cryptography:cryptography-bom:0.4.0"))
1414

1515
// now you can declare other dependencies without a version
1616
implementation("dev.whyoleg.cryptography:cryptography-core")

docs/gradle-version-catalog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Configure `settings.gradle.kts`:
1111
dependencyResolutionManagement {
1212
versionCatalogs {
1313
create("cryptographyLibs") {
14-
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.3.1")
14+
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.4.0")
1515
}
1616
}
1717
}
@@ -33,7 +33,7 @@ Paste into `libs.versions.toml`:
3333

3434
```toml
3535
[versions]
36-
cryptography = "0.3.1"
36+
cryptography = "0.4.0"
3737

3838
[libraries]
3939
cryptography-core = { group = "dev.whyoleg.cryptography", name = "cryptography-core", version.ref = "cryptography" }

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
group=dev.whyoleg.cryptography
6-
version=0.3.1
6+
version=0.4.0
77
#Kotlin
88
kotlin.mpp.import.enableKgpDependencyResolution=true
99
kotlin.mpp.enableCInteropCommonization=true

tests-publication/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencyResolutionManagement {
1616

1717
versionCatalogs {
1818
create("cryptographyLibs") {
19-
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.3.1")
19+
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.4.0")
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)