Skip to content

Commit

Permalink
v0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bmoffatt committed Nov 16, 2023
1 parent 934d254 commit 6216172
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions tests/version_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 6216172

Please sign in to comment.