Skip to content

Commit

Permalink
0.4.0 final version bump
Browse files Browse the repository at this point in the history
This should also close issue inductiveautomation#49.
  • Loading branch information
brianeray committed Aug 28, 2024
1 parent e6fef18 commit ccdee13
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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-SNAPSHOT"
project.version = "0.4.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-SNAPSHOT"],
version = ["0.4.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-SNAPSHOT")""")
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.4.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-SNAPSHOT",
val modulePluginVersion: String = "0.4.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-SNAPSHOT"
private var modulePluginVersion: String = "0.4.0"
private var allowUnsignedModules: Boolean = false

// builder methods
Expand Down
4 changes: 2 additions & 2 deletions 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-SNAPSHOT")
id("io.ia.sdk.modl") version("0.4.0")
}
```

Expand All @@ -28,7 +28,7 @@ Or for Groovy DSL buildscripts:
```groovy
// build.gradle
plugins {
id 'io.ia.sdk.modl' version '0.4.0-SNAPSHOT'
id 'io.ia.sdk.modl' version '0.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle-module-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
}

group = "io.ia.sdk"
version = "0.4.0-SNAPSHOT"
version = "0.4.0"

configurations {
val functionalTestImplementation by registering {
Expand Down

0 comments on commit ccdee13

Please sign in to comment.