Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

allprojects {
project.version = "0.4.0"
project.version = "0.5.0"
}

tasks {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import java.util.concurrent.Callable

@Command(
name = "ignition-module-gen",
version = ["0.4.0"],
version = ["0.5.0"],
description = ["Generates an Ignition module skeleton according to provided arguments."],
subcommands = [HelpCommand::class],
mixinStandardHelpOptions = true
Expand Down Expand Up @@ -160,7 +160,7 @@ class ModuleGeneratorCli : Callable<Int> {
configBuilder.debugPluginConfig(true)
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl")""")
} else {
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.4.0")""")
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.5.0")""")
}

val config = configBuilder.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ data class GeneratorConfig constructor(
* generated, as it is assumed the plugin will be established via 'includeBuild' in settings.gradle
* pluginManagement.
*/
val modulePluginVersion: String = "0.4.0",
val modulePluginVersion: String = "0.5.0",

/**
* If signing the module should be required, set to false. Set to true by default to allow building the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GeneratorConfigBuilder {
private var debugPluginConfig: Boolean = false
private var rootPluginConfig: String = ""
private var useRootForSingleProjectScope: Boolean = false
private var modulePluginVersion: String = "0.4.0"
private var modulePluginVersion: String = "0.5.0"
private var allowUnsignedModules: Boolean = false

// builder methods
Expand Down
2 changes: 1 addition & 1 deletion gradle-module-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For current versions of gradle, simply add to your `build.gradle.kts`:
```kotlin
// build.gradle.kts
plugins {
id("io.ia.sdk.modl") version("0.4.0")
id("io.ia.sdk.modl") version("0.5.0")
}
```

Expand Down
Loading