Skip to content

Commit

Permalink
Update version to 0.6.0 (#1541)
Browse files Browse the repository at this point in the history
* Update version to 0.6.0

* Remove timing comparison for rule stats test since it causes intermittent failures
  • Loading branch information
daxhaw authored Jun 8, 2022
1 parent bb35919 commit 084196d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dev_tools/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion production/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 3 additions & 1 deletion production/rules/event_manager/tests/test_rule_stats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 084196d

Please sign in to comment.