Skip to content

Commit

Permalink
update versions for next dev iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Mar 23, 2023
1 parent a41c510 commit 0729074
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ For supported algorithms, primitives and targets, please consult [Providers docu
Make sure that you use Kotlin 1.8.10+.
Additionally, it's possible to use [BOM][BOM] or [Gradle version catalog][Gradle version catalog] to add dependencies easier

> ⚠️ NOT YET PUBLISHED TO MAVEN CENTRAL
```kotlin
repositories {
mavenCentral()
Expand All @@ -56,9 +54,9 @@ repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
implementation("dev.whyoleg.cryptography:cryptography-core:0.1.0-SNAPSHOT")
implementation("dev.whyoleg.cryptography:cryptography-core:0.2.0-SNAPSHOT")
// some provider
implementation("dev.whyoleg.cryptography:cryptography-jdk:0.1.0-SNAPSHOT")
implementation("dev.whyoleg.cryptography:cryptography-jdk:0.2.0-SNAPSHOT")
}
```

Expand Down
6 changes: 2 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ For supported algorithms, primitives and targets, please consult [Providers docu
Make sure that you use Kotlin 1.8.10+.
Additionally, it's possible to use [BOM][BOM] or [Gradle version catalog][Gradle version catalog] to add dependencies easier

> ⚠️ NOT YET PUBLISHED TO MAVEN CENTRAL
```kotlin
repositories {
mavenCentral()
Expand All @@ -41,9 +39,9 @@ repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
implementation("dev.whyoleg.cryptography:cryptography-core:0.1.0-SNAPSHOT")
implementation("dev.whyoleg.cryptography:cryptography-core:0.2.0-SNAPSHOT")
// some provider
implementation("dev.whyoleg.cryptography:cryptography-jdk:0.1.0-SNAPSHOT")
implementation("dev.whyoleg.cryptography:cryptography-jdk:0.2.0-SNAPSHOT")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

group=dev.whyoleg.cryptography
version=0.1.0-SNAPSHOT
version=0.2.0-SNAPSHOT
#Kotlin
kotlin.js.compiler=ir
kotlin.incremental.useClasspathSnapshot=true
Expand Down
4 changes: 1 addition & 3 deletions tests-publication/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,17 @@ pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}

dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

versionCatalogs {
create("cryptographyLibs") {
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.1.0-SNAPSHOT")
from("dev.whyoleg.cryptography:cryptography-version-catalog:0.1.0")
}
}
}
Expand Down

0 comments on commit 0729074

Please sign in to comment.