Skip to content

Commit f8ab54a

Browse files
committed
0.4.0 final version bump
This should also close issue #49.
1 parent 5cbefe8 commit f8ab54a

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222
}
2323

2424
allprojects {
25-
project.version = "0.4.0-SNAPSHOT"
25+
project.version = "0.4.0"
2626
}
2727

2828
tasks {

generator/generator-cli/src/main/kotlin/io/ia/sdk/tools/module/cli/ModuleGeneratorCli.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import java.util.concurrent.Callable
1919

2020
@Command(
2121
name = "ignition-module-gen",
22-
version = ["0.4.0-SNAPSHOT"],
22+
version = ["0.4.0"],
2323
description = ["Generates an Ignition module skeleton according to provided arguments."],
2424
subcommands = [HelpCommand::class],
2525
mixinStandardHelpOptions = true
@@ -160,7 +160,7 @@ class ModuleGeneratorCli : Callable<Int> {
160160
configBuilder.debugPluginConfig(true)
161161
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl")""")
162162
} else {
163-
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.4.0-SNAPSHOT")""")
163+
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.4.0")""")
164164
}
165165

166166
val config = configBuilder.build()

generator/generator-core/src/main/kotlin/io/ia/ignition/module/generator/api/GeneratorConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ data class GeneratorConfig constructor(
116116
* generated, as it is assumed the plugin will be established via 'includeBuild' in settings.gradle
117117
* pluginManagement.
118118
*/
119-
val modulePluginVersion: String = "0.4.0-SNAPSHOT",
119+
val modulePluginVersion: String = "0.4.0",
120120

121121
/**
122122
* If signing the module should be required, set to false. Set to true by default to allow building the

generator/generator-core/src/main/kotlin/io/ia/ignition/module/generator/api/GeneratorConfigBuilder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class GeneratorConfigBuilder {
2626
private var debugPluginConfig: Boolean = false
2727
private var rootPluginConfig: String = ""
2828
private var useRootForSingleProjectScope: Boolean = false
29-
private var modulePluginVersion: String = "0.4.0-SNAPSHOT"
29+
private var modulePluginVersion: String = "0.4.0"
3030
private var allowUnsignedModules: Boolean = false
3131

3232
// builder methods

gradle-module-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For current versions of gradle, simply add to your `build.gradle.kts`:
1919
```kotlin
2020
// build.gradle.kts
2121
plugins {
22-
id("io.ia.sdk.modl") version("0.4.0-SNAPSHOT")
22+
id("io.ia.sdk.modl") version("0.4.0")
2323
}
2424
```
2525

@@ -28,7 +28,7 @@ Or for Groovy DSL buildscripts:
2828
```groovy
2929
// build.gradle
3030
plugins {
31-
id 'io.ia.sdk.modl' version '0.4.0-SNAPSHOT'
31+
id 'io.ia.sdk.modl' version '0.4.0'
3232
}
3333
```
3434

gradle-module-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
}
2121

2222
group = "io.ia.sdk"
23-
version = "0.4.0-SNAPSHOT"
23+
version = "0.4.0"
2424

2525
configurations {
2626
val functionalTestImplementation by registering {

0 commit comments

Comments
 (0)