Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Dec 1, 2024
1 parent 3138d51 commit 5743afe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add the annotations dependency as follows:

```gradle
dependencies {
implementation("dev.datlag.sekret:annotations:2.0.0-alpha-07")
implementation("dev.datlag.sekret:annotations:2.0.0-alpha-08")
}
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The functionality and all features is based on the Gradle and Compiler plugin, w

```gradle
plugins {
id("dev.datlag.sekret") version "2.0.0-alpha-07"
id("dev.datlag.sekret") version "2.0.0-alpha-08"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
lib = "2.0.0-alpha-08-SNAPSHOT"
lib = "2.0.0-alpha-08"
android = "8.7.2"
auto-service = "1.1.1"
kotlin = "2.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ open class SekretPlugin : Plugin<Project> {
}

companion object {
private const val VERSION = "2.0.0-alpha-08-SNAPSHOT"
private const val VERSION = "2.0.0-alpha-08"

internal fun getVersion(): String {
return runCatching {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ open class GenerateSekretTask : DefaultTask() {
val sekretDir = ModuleGenerator.createBase(outputDir)
val requiredTargets = Target.addDependingTargets(
listOf(targets.get(), project.targetsMapped).flatten()
).also {
println("Used targets for generating: ${it.map { t -> t.name }.joinToString(", ")}")
}
)
BuildFileGenerator.generate(
targets = requiredTargets,
packageName = packageName.getOrElse(PropertiesExtension.sekretPackageName),
Expand Down

0 comments on commit 5743afe

Please sign in to comment.