Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev window release version prep #54

Merged
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.1.0-SNAPSHOT"
project.version = "0.4.0-SNAPSHOT"
}

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.0.2"],
version = ["0.4.0-SNAPSHOT"],
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.1.1")""")
configBuilder.rootPluginConfig("""id("io.ia.sdk.modl") version("0.4.0-SNAPSHOT")""")
}

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.2.0",
val modulePluginVersion: String = "0.4.0-SNAPSHOT",

/**
* 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.1.1"
private var modulePluginVersion: String = "0.4.0-SNAPSHOT"
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.1.1")
id("io.ia.sdk.modl") version("0.4.0-SNAPSHOT")
}
```

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

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.3.0"
version = "0.4.0-SNAPSHOT"

configurations {
val functionalTestImplementation by registering {
Expand Down
Loading