Skip to content

Commit 11fe37c

Browse files
committed
v0.2.8
1 parent 1129e53 commit 11fe37c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

+2-2
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.8
55
LANGUAGES CXX)
66

77
option(ENABLE_LTO "Enables link-time optimization, requires compiler support." OFF)
@@ -16,7 +16,7 @@ add_library(${PROJECT_NAME}
1616

1717
set_target_properties(${PROJECT_NAME} PROPERTIES
1818
SOVERSION 0
19-
VERSION ${PROJECT_VERSION}-dev)
19+
VERSION ${PROJECT_VERSION})
2020

2121
target_include_directories(${PROJECT_NAME} PUBLIC
2222
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>

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, 8);
2222
}

0 commit comments

Comments
 (0)