diff --git a/README.md b/README.md index d29f5d6..a252e0e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ You can run the application from the flat jar file or with Docker. For the jar file, you must have Java 21 or later installed: ```bash -java -jar high-load-stress-8.5.0.jar +java -jar high-load-stress-8.6.0.jar ``` ### Docker @@ -19,8 +19,8 @@ java -jar high-load-stress-8.5.0.jar For Docker, you do not need to have Java installed. Just load and run the image: ```bash -docker load -i high-load-stress-8.5.0.tar -docker run high-load-stress:8.5.0 --listScenarios +docker load -i high-load-stress-8.6.0.tar +docker run high-load-stress:8.6.0 --listScenarios ``` ### Docker networking @@ -30,13 +30,13 @@ With Docker, you might need extra arguments to connect to your desired endpoint: If the service you are testing also runs in Docker, the tester should be able to connect to it: ```bash -docker run high-load-stress:8.5.0 --endpoint other-container-address:8080 +docker run high-load-stress:8.6.0 --endpoint other-container-address:8080 ``` If the service you are testing runs on the host, you need to use host networking: ```bash -docker run --network host high-load-stress:8.5.0 --endpoint localhost:8080 +docker run --network host high-load-stress:8.6.0 --endpoint localhost:8080 ``` ## Usage diff --git a/build.gradle.kts b/build.gradle.kts index bacb594..be24963 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { // Application config group = "me.hogejo.highload.stress" -version = "8.5.0" +version = "8.6.0" application { mainClass.set("$group.Application")