Skip to content

Commit 6216172

Browse files
committed
v0.2.10
1 parent 934d254 commit 6216172

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.9)
22
set(CMAKE_CXX_STANDARD 11)
33
project(aws-lambda-runtime
4-
VERSION 0.0.0
4+
VERSION 0.2.10
55
LANGUAGES CXX)
66

77
option(ENABLE_LTO "Enables link-time optimization, requires compiler support." OFF)

tests/version_tests.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ TEST(VersionTests, get_version_major)
1212
TEST(VersionTests, get_version_minor)
1313
{
1414
auto version = get_version_minor();
15-
ASSERT_GE(version, 0);
15+
ASSERT_GE(version, 2);
1616
}
1717

1818
TEST(VersionTests, get_version_patch)
1919
{
2020
auto version = get_version_patch();
21-
ASSERT_GE(version, 0);
21+
ASSERT_GE(version, 10);
2222
}

0 commit comments

Comments
 (0)