Skip to content

Commit 084196d

Browse files
authored
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
1 parent bb35919 commit 084196d

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

dev_tools/sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ When we are ready to release a new version of Gaia this is the process to follow
1313
```shell
1414
git checkout -b gaia-release-0.3.0-beta
1515
```
16-
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.
16+
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.
1717
```cmake
1818
# From
1919
project(production VERSION 0.2.5)
2020
# To
2121
project(production VERSION 0.3.0)
2222
```
23-
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.
23+
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.
2424
```cmake
2525
# From
2626
set(PRE_RELEASE_IDENTIFIER "alpha")

production/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1515

1616
enable_testing()
1717

18-
project(production VERSION 0.5.0)
18+
project(production VERSION 0.6.0)
1919

2020
# Sets the pre-release version which will be appended to the
2121
# product version: 0.1.0-alpha.

production/rules/event_manager/tests/test_rule_stats.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,9 @@ class rules__rule_stats__test : public ::testing::Test
254254
if (expected_ns)
255255
{
256256
EXPECT_GT(actual_ns, expected_ns);
257-
EXPECT_LT(actual_ns, 5 * expected_ns);
257+
// Disabled because timing tests may fail if the machine doing the validation
258+
// is too slow.
259+
// EXPECT_LT(actual_ns, 5 * expected_ns);
258260
}
259261
else
260262
{

0 commit comments

Comments
 (0)