diff --git a/src/Version.h b/src/Version.h index 6e5b083..691702d 100644 --- a/src/Version.h +++ b/src/Version.h @@ -3,6 +3,6 @@ #define MQTTEXPLORER_VERSION_MAJOR 1 #define MQTTEXPLORER_VERSION_MINOR 0 -#define MQTTEXPLORER_VERSION_PATCH 1 +#define MQTTEXPLORER_VERSION_PATCH 2 #endif // VERSION_H diff --git a/src/main.cpp b/src/main.cpp index d02aff3..75c1b65 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,6 +31,8 @@ int main(int argc, const char* argv[]) { }); while (true) { + using namespace std::chrono_literals; + std::this_thread::sleep_for(100ms); } return 0; }