diff --git a/CHANGELOG.md b/CHANGELOG.md index e6c0a93..43410d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ + +## [v1.2.2] - 2021-06-22 +### Ci +- remove Jenkins chron +- **changelog:** add automation for changelog generation + +### Fix +- update examples text and version + + +## [v1.2.1] - 2021-05-06 + +### Fix +**docker:** add missing ca-certs + ## v1.2.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 05d3981..2a85cb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.1) -project (rpc VERSION 1.2.0) +project (rpc VERSION 1.2.1) set (CMAKE_CXX_STANDARD 11) diff --git a/Jenkinsfile b/Jenkinsfile index af5fae5..d424a21 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,5 @@ pipeline { agent none - triggers {cron '@daily'} options { buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30')) timestamps() @@ -169,4 +168,4 @@ pipeline { } } } -} \ No newline at end of file +} diff --git a/usage.cpp b/usage.cpp index 9c642a6..eb5934b 100644 --- a/usage.cpp +++ b/usage.cpp @@ -49,15 +49,15 @@ void usage_show_help() std::cout << "Examples:" << std::endl; std::cout << " # Activate platform using profile1" << std::endl; std::cout << " " << PROJECT_NAME << \ - " --url wss://localhost:8080 --cmd \"-t activate --profile profile1\"" << std::endl; + " --url wss://192.168.86.100/activate --cmd \"-t activate --profile profile1\"" << std::endl; std::cout << std::endl; std::cout << " # Activate platform using profile1 and override DNS detection" << std::endl; std::cout << " " << PROJECT_NAME << \ - " --url wss://localhost:8080 --cmd \"-t activate --profile profile1\" --dns corp.com" << std::endl; + " --url wss://mycloud.com/activate --cmd \"-t activate --profile profile1\" --dns corp.com" << std::endl; std::cout << std::endl; std::cout << " # Deactivate platform and connect through a proxy" << std::endl; std::cout << " " << PROJECT_NAME << \ - " -u wss://localhost:8080 -c \"-t deactivate --password P@ssw0rd\" -p http://proxy.com:1000" << std::endl; + " -u wss://mycloud.com/activate -c \"-t deactivate --password P@ssw0rd\" -p http://proxy.com:1000" << std::endl; std::cout << std::endl; std::cout << " # Show all informational items" << std::endl; std::cout << " " << PROJECT_NAME << " --amtinfo all" << std::endl;