diff --git a/VERSION b/VERSION index 9b0025a7..72a8a631 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.40.0 +0.41.0 diff --git a/build.gradle b/build.gradle index 092da6d4..1c38f2de 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ // dealing with. Do not mess with the `def {variableName}` part of the following // lines, only change the versions we rely upon. -def galasaVersion = '0.40.0' +def galasaVersion = '0.41.0' repositories { gradlePluginPortal() @@ -28,7 +28,7 @@ repositories { apply plugin: 'java' dependencies { // Use dev.galasa.platform to obtain the versions - implementation platform('dev.galasa:dev.galasa.platform:0.40.0') + implementation platform('dev.galasa:dev.galasa.platform:0.41.0') // We need the galasa-boot jar so we can launch tests in a local JVM implementation 'dev.galasa:galasa-boot' // We need the openapi generator to turn a yaml file into go client stubs, diff --git a/docs/generated/galasactl_runs_submit_local.md b/docs/generated/galasactl_runs_submit_local.md index e8e1feea..837c62e8 100644 --- a/docs/generated/galasactl_runs_submit_local.md +++ b/docs/generated/galasactl_runs_submit_local.md @@ -17,7 +17,7 @@ galasactl runs submit local [flags] --debug When set (or true) the debugger pauses on startup and tries to connect to a Java debugger. The connection is established using the --debugMode and --debugPort values. --debugMode string The mode to use when the --debug option causes the testcase to connect to a Java debugger. Valid values are 'listen' or 'attach'. 'listen' means the testcase JVM will pause on startup, waiting for the Java debugger to connect to the debug port (see the --debugPort option). 'attach' means the testcase JVM will pause on startup, trying to attach to a java debugger which is listening on the debug port. The default value is 'listen' but can be overridden by the 'galasactl.jvm.local.launch.debug.mode' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command. --debugPort uint32 The port to use when the --debug option causes the testcase to connect to a java debugger. The default value used is 2970 which can be overridden by the 'galasactl.jvm.local.launch.debug.port' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command. - --galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "0.40.0") + --galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "0.41.0") --gherkin strings Gherkin feature file URL. Should start with 'file://'. -h, --help Displays the options for the 'runs submit local' command. --localMaven string The url of a local maven repository are where galasa bundles can be loaded from on your local file system. Defaults to your home .m2/repository file. Please note that this should be in a URL form e.g. 'file:///Users/myuserid/.m2/repository', or 'file://C:/Users/myuserid/.m2/repository'