diff --git a/build.gradle b/build.gradle index f5000e1ae..fb475de94 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ apply plugin: 'com.palantir.graal' javadoc.options.encoding = 'UTF-8' group = 'com.hivemq' -version = '1.0.1' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "") +version = '1.1.0' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "") description = 'MQTT CLI is a tool that provides a feature rich command line interface for connecting, ' + 'publishing, subscribing, unsubscribing and disconnecting ' + 'various MQTT clients simultaneously and supports MQTT 5.0 and MQTT 3.1.1 ' diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF index 6d396f09b..184e034b5 100644 --- a/src/main/resources/META-INF/MANIFEST.MF +++ b/src/main/resources/META-INF/MANIFEST.MF @@ -1,6 +1,6 @@ Manifest-Version: 1.0.0 -Implementation-Title: MQTT Command line interface +Implementation-Title: MQTT Command Line Interface Implementation-Vendor: HiveMQ GmbH -Implementation-Version: 1.0.0 +Implementation-Version: 1.1.0 Main-Class: com.hivemq.cli.MqttCLIMain diff --git a/tools/createReflectionJson.sh b/tools/createReflectionJson.sh index 62f50fffe..2378cc13b 100755 --- a/tools/createReflectionJson.sh +++ b/tools/createReflectionJson.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -java -cp ././../build/libs/mqtt-cli-1.0.0.jar picocli.codegen.aot.graalvm.ReflectionConfigGenerator \ +java -cp ././../build/libs/mqtt-cli-1.1.0.jar picocli.codegen.aot.graalvm.ReflectionConfigGenerator \ com.hivemq.cli.commands.shell.ContextPublishCommand \ com.hivemq.cli.commands.shell.ClearScreenCommand \ com.hivemq.cli.commands.shell.ContextDisconnectCommand \