From 084196d701ea83347064d407fbc953bba643d55a Mon Sep 17 00:00:00 2001 From: Dax Hawkins <57684232+daxhaw@users.noreply.github.com> Date: Wed, 8 Jun 2022 12:02:49 -0700 Subject: [PATCH] Update version to 0.6.0 (#1541) * Update version to 0.6.0 * Remove timing comparison for rule stats test since it causes intermittent failures --- dev_tools/sdk/README.md | 4 ++-- production/CMakeLists.txt | 2 +- production/rules/event_manager/tests/test_rule_stats.cpp | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dev_tools/sdk/README.md b/dev_tools/sdk/README.md index e305366bea6..859fc6ffc0f 100644 --- a/dev_tools/sdk/README.md +++ b/dev_tools/sdk/README.md @@ -13,14 +13,14 @@ When we are ready to release a new version of Gaia this is the process to follow ```shell git checkout -b gaia-release-0.3.0-beta ``` -3. Bump the project version in the [production/CMakeLists.txt](production/CMakeLists.txt) according to Semantic Versioning 2.0 spec. Note that Major version bumps should involve consultation with a number of folks across the team. +3. Bump the project version in the [production/CMakeLists.txt](../../production/CMakeLists.txt) according to Semantic Versioning 2.0 spec. Note that Major version bumps should involve consultation with a number of folks across the team. ```cmake # From project(production VERSION 0.2.5) # To project(production VERSION 0.3.0) ``` -4. Change, if necessary, the `PRE_RELEASE_IDENTIFIER` in the [production/CMakeLists.txt](production/CMakeLists.txt). For GA releases leave the `PRE_RELEASE_IDENTIFIER` empty. +4. Change, if necessary, the `PRE_RELEASE_IDENTIFIER` in the [production/CMakeLists.txt](../../production/CMakeLists.txt). For GA releases leave the `PRE_RELEASE_IDENTIFIER` empty. ```cmake # From set(PRE_RELEASE_IDENTIFIER "alpha") diff --git a/production/CMakeLists.txt b/production/CMakeLists.txt index 90f9cdb6b7a..fbbbc942508 100644 --- a/production/CMakeLists.txt +++ b/production/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) enable_testing() -project(production VERSION 0.5.0) +project(production VERSION 0.6.0) # Sets the pre-release version which will be appended to the # product version: 0.1.0-alpha. diff --git a/production/rules/event_manager/tests/test_rule_stats.cpp b/production/rules/event_manager/tests/test_rule_stats.cpp index d89fa2a6ea1..5967b1b887c 100644 --- a/production/rules/event_manager/tests/test_rule_stats.cpp +++ b/production/rules/event_manager/tests/test_rule_stats.cpp @@ -254,7 +254,9 @@ class rules__rule_stats__test : public ::testing::Test if (expected_ns) { EXPECT_GT(actual_ns, expected_ns); - EXPECT_LT(actual_ns, 5 * expected_ns); + // Disabled because timing tests may fail if the machine doing the validation + // is too slow. + // EXPECT_LT(actual_ns, 5 * expected_ns); } else {