diff --git a/CMakeLists.txt b/CMakeLists.txt index 09e226f..48ab5ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.9) set(CMAKE_CXX_STANDARD 11) project(aws-lambda-runtime - VERSION 0.0.0 + VERSION 0.2.10 LANGUAGES CXX) option(ENABLE_LTO "Enables link-time optimization, requires compiler support." OFF) diff --git a/tests/version_tests.cpp b/tests/version_tests.cpp index 070b6dd..cb08163 100644 --- a/tests/version_tests.cpp +++ b/tests/version_tests.cpp @@ -12,11 +12,11 @@ TEST(VersionTests, get_version_major) TEST(VersionTests, get_version_minor) { auto version = get_version_minor(); - ASSERT_GE(version, 0); + ASSERT_GE(version, 2); } TEST(VersionTests, get_version_patch) { auto version = get_version_patch(); - ASSERT_GE(version, 0); + ASSERT_GE(version, 10); }